aboutsummaryrefslogtreecommitdiff
path: root/lib/ARCMigrate/PlistReporter.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-07-25 20:57:57 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-07-25 20:57:57 +0000
commita77c031cb66f75d22672070052cc6e0205289ff8 (patch)
treedd131307268b1262b6054112018bb68659cfebbc /lib/ARCMigrate/PlistReporter.cpp
parent75d8c91a5c44319af9b86dfd3e2bc2376edb8ba4 (diff)
Rename getInstantiationColumnNumber to getExpansionColumnNumber in both
SourceManager and FullSourceLoc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135965 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ARCMigrate/PlistReporter.cpp')
-rw-r--r--lib/ARCMigrate/PlistReporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ARCMigrate/PlistReporter.cpp b/lib/ARCMigrate/PlistReporter.cpp
index 1b487ce8a0..3aa8da505e 100644
--- a/lib/ARCMigrate/PlistReporter.cpp
+++ b/lib/ARCMigrate/PlistReporter.cpp
@@ -57,7 +57,7 @@ static void EmitLocation(raw_ostream& o, const SourceManager &SM,
Indent(o, indent) << " <key>line</key><integer>"
<< Loc.getInstantiationLineNumber() << "</integer>\n";
Indent(o, indent) << " <key>col</key><integer>"
- << Loc.getInstantiationColumnNumber() + offset << "</integer>\n";
+ << Loc.getExpansionColumnNumber() + offset << "</integer>\n";
Indent(o, indent) << " <key>file</key><integer>"
<< GetFID(FM, SM, Loc) << "</integer>\n";
Indent(o, indent) << "</dict>\n";