forked from OSchip/llvm-project
parent
671689a440
commit
7067b4f49d
|
@ -258,8 +258,6 @@ public:
|
|||
|
||||
bool isInSystemHeader() const;
|
||||
|
||||
bool isFileID() const { return Loc.isFileID(); }
|
||||
|
||||
unsigned getCanonicalFileID() const;
|
||||
|
||||
bool operator==(const FullSourceLoc& RHS) const {
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue