Skip to content
Snippets Groups Projects
Commit c18c12e3 authored by Reid Kleckner's avatar Reid Kleckner
Browse files

Fix AMDGPU build issue

llvm-svn: 315535
parent ec4ff24f
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,7 @@ void AMDGPUAsmPrinter::EmitInstruction(const MachineInstr *MI) { ...@@ -230,7 +230,7 @@ void AMDGPUAsmPrinter::EmitInstruction(const MachineInstr *MI) {
const MCSymbolRefExpr *Expr const MCSymbolRefExpr *Expr
= MCSymbolRefExpr::create(MBB->getSymbol(), OutContext); = MCSymbolRefExpr::create(MBB->getSymbol(), OutContext);
Expr->print(Str, MAI); Expr->print(Str, MAI);
OutStreamer->emitRawComment(" mask branch " + BBStr); OutStreamer->emitRawComment(Twine(" mask branch ") + BBStr);
} }
return; return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment