File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ Expr *swift::expandMacroExpr(
190
190
{
191
191
llvm::raw_string_ostream out (bufferName);
192
192
193
- out << " Macro expansion of # " << macro->getName ();
193
+ out << " macro: " << macro->getName (). getBaseName ();
194
194
if (auto bufferID = sourceFile->getBufferID ()) {
195
195
unsigned startLine, startColumn;
196
196
std::tie (startLine, startColumn) =
@@ -202,7 +202,7 @@ Expr *swift::expandMacroExpr(
202
202
std::tie (endLine, endColumn) =
203
203
sourceMgr.getLineAndColumnInBuffer (endLoc, *bufferID);
204
204
205
- out << " in " << sourceMgr.getIdentifierForBuffer (*bufferID) << " :"
205
+ out << " : " << sourceMgr.getIdentifierForBuffer (*bufferID) << " :"
206
206
<< startLine << " :" << startColumn
207
207
<< " -" << endLine << " :" << endColumn;
208
208
}
You can’t perform that action at this time.
0 commit comments