File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1638,7 +1638,7 @@ void LinkerDriver::linkerMain(ArrayRef<const char *> argsArr) {
1638
1638
// because it doesn't start with "/", but we deliberately chose "--" to
1639
1639
// avoid conflict with /version and for compatibility with clang-cl.
1640
1640
if (args.hasArg (OPT_dash_dash_version)) {
1641
- message ( getLLDVersion () );
1641
+ Msg (ctx) << getLLDVersion ();
1642
1642
return ;
1643
1643
}
1644
1644
Original file line number Diff line number Diff line change @@ -922,7 +922,7 @@ opt::InputArgList ArgParser::parse(ArrayRef<const char *> argv) {
922
922
std::string msg = " Command line:" ;
923
923
for (const char *s : expandedArgv)
924
924
msg += " " + std::string (s);
925
- message (msg) ;
925
+ Msg (ctx) << msg ;
926
926
}
927
927
928
928
// Save the command line after response file expansion so we can write it to
Original file line number Diff line number Diff line change @@ -1317,7 +1317,7 @@ void PDBLinker::printStats() {
1317
1317
printLargeInputTypeRecs (" IPI" , tMerger.ipiCounts , tMerger.getIDTable ());
1318
1318
}
1319
1319
1320
- message (buffer) ;
1320
+ Msg (ctx) << buffer ;
1321
1321
}
1322
1322
1323
1323
void PDBLinker::addNatvisFiles () {
You can’t perform that action at this time.
0 commit comments