remove FullSourceLoc::isFileID

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62371 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-01-16 22:53:56 +00:00
Родитель f3e8fcd074
Коммит 0cf7bb937d
2 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -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(),