80 columns!
authorDevang Patel <dpatel@apple.com>
Mon, 27 Jul 2009 20:30:05 +0000 (20:30 +0000)
committerDevang Patel <dpatel@apple.com>
Mon, 27 Jul 2009 20:30:05 +0000 (20:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77243 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/DebugInfo.h

index 39fe01d3428b1518c9d8749943c553d718fd6717..b8e4c6cde5dceb2dabb48b480d2a99c4b79d0325 100644 (file)
@@ -213,9 +213,15 @@ namespace llvm {
     // carry this is just plain insane.
     uint64_t getOffsetInBits() const    { return getUInt64Field(7); }
     unsigned getFlags() const           { return getUnsignedField(8); }
-    bool isPrivate() const              { return (getFlags() & FlagPrivate) != 0; }
-    bool isProtected() const            { return (getFlags() & FlagProtected) != 0; }
-    bool isForwardDecl() const          { return (getFlags() & FlagFwdDecl) != 0; }
+    bool isPrivate() const              { return 
+        (getFlags() & FlagPrivate) != 0; 
+    }
+    bool isProtected() const            { 
+      return (getFlags() & FlagProtected) != 0; 
+    }
+    bool isForwardDecl() const          {
+        return (getFlags() & FlagFwdDecl) != 0; 
+    }
 
     /// dump - print type.
     void dump() const;
@@ -552,8 +558,9 @@ namespace llvm {
   /// Find the debug info descriptor corresponding to this global variable.
   Value *findDbgGlobalDeclare(GlobalVariable *V);
 
-  bool getLocationInfo(const Value *V, std::string &DisplayName, std::string &Type, 
-                       unsigned &LineNo, std::string &File, std::string &Dir); 
+  bool getLocationInfo(const Value *V, std::string &DisplayName, 
+                       std::string &Type, unsigned &LineNo, std::string &File,
+                       std::string &Dir); 
 
   /// CollectDebugInfoAnchors - Collect debugging information anchors.
   void CollectDebugInfoAnchors(Module &M,