Fix indentation.
authorDevang Patel <dpatel@apple.com>
Thu, 28 Oct 2010 20:41:11 +0000 (20:41 +0000)
committerDevang Patel <dpatel@apple.com>
Thu, 28 Oct 2010 20:41:11 +0000 (20:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117601 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/DebugInfo.h

index 54508a77b138d1a5c86122ad71960697eaa8eb64..63eeb201bba5b68cd5c794e70396bd7d5b81f5ec 100644 (file)
@@ -233,11 +233,11 @@ namespace llvm {
     DIScope getContext() const          { return getFieldAs<DIScope>(1); }
     StringRef getName() const           { return getStringField(2);     }
     DICompileUnit getCompileUnit() const{ 
-      if (getVersion() == llvm::LLVMDebugVersion7)
-        return getFieldAs<DICompileUnit>(3);
-
-      DIFile F = getFieldAs<DIFile>(3);
-      return F.getCompileUnit();
+     if (getVersion() == llvm::LLVMDebugVersion7)
+       return getFieldAs<DICompileUnit>(3);
+     
+     DIFile F = getFieldAs<DIFile>(3);
+     return F.getCompileUnit();
     }
     unsigned getLineNumber() const      { return getUnsignedField(4); }
     uint64_t getSizeInBits() const      { return getUInt64Field(5); }