summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGDebugInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-01-19 07:36:42 +0000
committerChris Lattner <sabre@nondot.org>2009-01-19 07:36:42 +0000
commitf809bbdbb827e4d02a6ddc8f0dfa694d0ca17263 (patch)
tree77e1b16130f1743644ee0b6cd7909c7b242db471 /clang/lib/CodeGen/CGDebugInfo.cpp
parent7e343b2161cc2b20ff088fa4db8e5251a507d16c (diff)
downloadbcm5719-llvm-f809bbdbb827e4d02a6ddc8f0dfa694d0ca17263.tar.gz
bcm5719-llvm-f809bbdbb827e4d02a6ddc8f0dfa694d0ca17263.zip
remove the SourceManager:: and FullSourceLoc::getFileEntryForLoc methods.
llvm-svn: 62496
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r--clang/lib/CodeGen/CGDebugInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp
index 9cbefa3d069..5e4a95cc0cf 100644
--- a/clang/lib/CodeGen/CGDebugInfo.cpp
+++ b/clang/lib/CodeGen/CGDebugInfo.cpp
@@ -51,7 +51,7 @@ llvm::DICompileUnit CGDebugInfo::getOrCreateCompileUnit(SourceLocation Loc) {
return llvm::DICompileUnit();
SourceManager &SM = M->getContext().getSourceManager();
- const FileEntry *FE = SM.getFileEntryForLoc(Loc);
+ const FileEntry *FE = SM.getFileEntryForID(SM.getCanonicalFileID(Loc));
if (FE == 0) return llvm::DICompileUnit();
// See if this compile unit has been used before.
OpenPOWER on IntegriCloud