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 | 7067b4f49d3e822d9478965f01f1343a539a77a2 (patch) | |
tree | 8b6482f2f90837261baa3188b1d7bbb3d218c283 /clang/lib/Basic/SourceLocation.cpp | |
parent | 671689a4402e42ae81ad68572cbc1b669437df1f (diff) | |
download | bcm5719-llvm-7067b4f49d3e822d9478965f01f1343a539a77a2.tar.gz bcm5719-llvm-7067b4f49d3e822d9478965f01f1343a539a77a2.zip |
remove FullSourceLoc::isFileID
llvm-svn: 62371
Diffstat (limited to 'clang/lib/Basic/SourceLocation.cpp')
-rw-r--r-- | clang/lib/Basic/SourceLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/SourceLocation.cpp b/clang/lib/Basic/SourceLocation.cpp index a34293177ba..41ada637bd7 100644 --- a/clang/lib/Basic/SourceLocation.cpp +++ b/clang/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(), |