80-column.
authorEric Christopher <echristo@gmail.com>
Tue, 23 Jul 2013 22:16:44 +0000 (22:16 +0000)
committerEric Christopher <echristo@gmail.com>
Tue, 23 Jul 2013 22:16:44 +0000 (22:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186995 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DebugInfo.h

index 53b1bdd560535e940bf8fa2d8ec53d4587bfbb57..0eb0e24c5714be8d2447790399730bf70bfbd5fd 100644 (file)
@@ -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); }