diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-03 08:24:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-03 08:24:13 +0000 |
commit | f8484542bbd9f3445b22fe8d240a1eac790cd8ca (patch) | |
tree | c2f0a79424cc521c3e0496f12c739c937bbf4263 /Basic/SourceManager.cpp | |
parent | 795aaed9241c6fb77e40c40b73383ac1317ac536 (diff) |
the macro start and macro end bits in source location are dead, remove them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46685 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Basic/SourceManager.cpp')
-rw-r--r-- | Basic/SourceManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Basic/SourceManager.cpp b/Basic/SourceManager.cpp index 4f9753739e..73ac2abe26 100644 --- a/Basic/SourceManager.cpp +++ b/Basic/SourceManager.cpp @@ -193,12 +193,12 @@ SourceLocation SourceManager::getInstantiationLoc(SourceLocation PhysLoc, int PhysDelta = PhysLoc.getRawFilePos() - LastOne.getPhysicalLoc().getRawFilePos(); if (SourceLocation::isValidMacroPhysOffs(PhysDelta)) - return SourceLocation::getMacroLoc(i, PhysDelta, false, false); + return SourceLocation::getMacroLoc(i, PhysDelta); } MacroIDs.push_back(MacroIDInfo::get(InstantLoc, PhysLoc)); - return SourceLocation::getMacroLoc(MacroIDs.size()-1, 0, false, false); + return SourceLocation::getMacroLoc(MacroIDs.size()-1, 0); } /// getBufferData - Return a pointer to the start and end of the character |