summaryrefslogtreecommitdiff
path: root/lib/IR/DebugInfo.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-03-20 23:58:12 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-03-20 23:58:12 +0000
commit00c5c5d46731834caa0ca3280e0dcc43202dd3c8 (patch)
treef9caa56b0626bd8549f353361e4bd052a62ba7fb /lib/IR/DebugInfo.cpp
parent2adf8ccbf0611df6393c30737d87faaf38cdcd0c (diff)
downloadllvm-00c5c5d46731834caa0ca3280e0dcc43202dd3c8.tar.gz
llvm-00c5c5d46731834caa0ca3280e0dcc43202dd3c8.tar.bz2
llvm-00c5c5d46731834caa0ca3280e0dcc43202dd3c8.tar.xz
Debug info: refactor the first field of DICompileUnit to be a raw file/directory pair
This removes the DICompileUnit special case from DIScope. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177610 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR/DebugInfo.cpp')
-rw-r--r--lib/IR/DebugInfo.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp
index e236e1877d..701cf1fdd3 100644
--- a/lib/IR/DebugInfo.cpp
+++ b/lib/IR/DebugInfo.cpp
@@ -670,8 +670,6 @@ StringRef DIScope::getFilename() const {
return DILexicalBlock(DbgNode).getFilename();
if (isSubprogram())
return DISubprogram(DbgNode).getFilename();
- if (isCompileUnit())
- return DICompileUnit(DbgNode).getFilename();
return ::getStringField(getNodeField(DbgNode, 1), 0);
}
@@ -684,8 +682,6 @@ StringRef DIScope::getDirectory() const {
return DILexicalBlock(DbgNode).getDirectory();
if (isSubprogram())
return DISubprogram(DbgNode).getDirectory();
- if (isCompileUnit())
- return DICompileUnit(DbgNode).getDirectory();
return ::getStringField(getNodeField(DbgNode, 1), 1);
}