[llvm-commits] [llvm] r117586 - /llvm/trunk/include/llvm/Analysis/DebugInfo.h
Devang Patel
dpatel at apple.com
Thu Oct 28 12:40:13 PDT 2010
Author: dpatel
Date: Thu Oct 28 14:40:13 2010
New Revision: 117586
URL: http://llvm.org/viewvc/llvm-project?rev=117586&view=rev
Log:
Fix indentation.
Modified:
llvm/trunk/include/llvm/Analysis/DebugInfo.h
Modified: llvm/trunk/include/llvm/Analysis/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?rev=117586&r1=117585&r2=117586&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/DebugInfo.h Thu Oct 28 14:40:13 2010
@@ -583,12 +583,12 @@
DIScope getContext() const { return getFieldAs<DIScope>(1); }
StringRef getName() const { return getStringField(2); }
StringRef getDirectory() const {
- DIFile F = getFieldAs<DIFile>(3);
- return F.getDirectory();
+ DIFile F = getFieldAs<DIFile>(3);
+ return F.getDirectory();
}
StringRef getFilename() const {
- DIFile F = getFieldAs<DIFile>(3);
- return F.getFilename();
+ DIFile F = getFieldAs<DIFile>(3);
+ return F.getFilename();
}
DICompileUnit getCompileUnit() const{
if (getVersion() == llvm::LLVMDebugVersion7)
More information about the llvm-commits
mailing list