[llvm] r186995 - 80-column.

Eric Christopher echristo at gmail.com
Tue Jul 23 15:16:44 PDT 2013


Author: echristo
Date: Tue Jul 23 17:16:44 2013
New Revision: 186995

URL: http://llvm.org/viewvc/llvm-project?rev=186995&view=rev
Log:
80-column.

Modified:
    llvm/trunk/include/llvm/DebugInfo.h

Modified: llvm/trunk/include/llvm/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo.h?rev=186995&r1=186994&r2=186995&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/DebugInfo.h Tue Jul 23 17:16:44 2013
@@ -619,7 +619,11 @@ namespace llvm {
   class DILexicalBlockFile : public DIScope {
   public:
     explicit DILexicalBlockFile(const MDNode *N = 0) : DIScope(N) {}
-    DIScope getContext() const { if (getScope().isSubprogram()) return getScope(); return getScope().getContext(); }
+    DIScope getContext() const {
+      if (getScope().isSubprogram())
+        return getScope();
+      return getScope().getContext();
+    }
     unsigned getLineNumber() const { return getScope().getLineNumber(); }
     unsigned getColumnNumber() const { return getScope().getColumnNumber(); }
     DILexicalBlock getScope() const { return getFieldAs<DILexicalBlock>(2); }





More information about the llvm-commits mailing list