Fix indentation.

llvm-svn: 117586
This commit is contained in:
Devang Patel 2010-10-28 19:40:13 +00:00
parent 3c5a54e4b9
commit 99811141c1
1 changed files with 4 additions and 4 deletions

View File

@ -583,12 +583,12 @@ namespace llvm {
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)