summaryrefslogtreecommitdiffstats
path: root/llvm/lib/IR
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/IR')
-rw-r--r--llvm/lib/IR/DebugInfo.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp
index 59d1511cc26..70025c77518 100644
--- a/llvm/lib/IR/DebugInfo.cpp
+++ b/llvm/lib/IR/DebugInfo.cpp
@@ -381,13 +381,15 @@ StringRef DIScope::getName() const {
StringRef DIScope::getFilename() const {
if (auto *N = get())
- return ::getStringField(dyn_cast_or_null<MDNode>(N->getFile()), 0);
+ if (auto *F = N->getFile())
+ return F->getFilename();
return "";
}
StringRef DIScope::getDirectory() const {
if (auto *N = get())
- return ::getStringField(dyn_cast_or_null<MDNode>(N->getFile()), 1);
+ if (auto *F = N->getFile())
+ return F->getDirectory();
return "";
}
OpenPOWER on IntegriCloud