diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 22:53:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 22:53:56 +0000 |
commit | 0cf7bb937d5ed21118eeb45a93eb916723cc75a1 (patch) | |
tree | 9aadac8e9d0bfa9fce9f49cb74acb716935db2aa /lib/Basic | |
parent | f3e8fcd07468028cd40e754cc7fb01a5c5be39bc (diff) |
remove FullSourceLoc::isFileID
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62371 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic')
-rw-r--r-- | lib/Basic/SourceLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Basic/SourceLocation.cpp b/lib/Basic/SourceLocation.cpp index a34293177b..41ada637bd 100644 --- a/lib/Basic/SourceLocation.cpp +++ b/lib/Basic/SourceLocation.cpp @@ -119,7 +119,7 @@ void FullSourceLoc::dump() const { return; } - if (isFileID()) { + if (Loc.isFileID()) { // The instantiation and spelling pos is identical for file locs. fprintf(stderr, "File Loc from '%s': %d: %d\n", getSourceName(), getInstantiationLineNumber(), |