DebugInfo: Use MDFile instead of accessing operands directly, NFC

llvm-svn: 234175
This commit is contained in:
Duncan P. N. Exon Smith 2015-04-06 16:43:40 +00:00
parent 6fa49967ca
commit 3d8d823eda

View File

@ -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 "";
}