Skip to content

Commit

Permalink
Fix unused variable warning. NFCI.
Browse files Browse the repository at this point in the history
  • Loading branch information
RKSimon committed Oct 29, 2019
1 parent 80b0cdd commit ec82eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/CodeGen/MachineInstr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1701,7 +1701,7 @@ void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST,
OS << " post-instr-symbol ";
MachineOperand::printSymbol(OS, *PostInstrSymbol);
}
if (MDNode *HeapAllocMarker = getHeapAllocMarker()) {
if (/*MDNode *HeapAllocMarker =*/getHeapAllocMarker()) {
if (!FirstOp) {
FirstOp = false;
OS << ',';
Expand Down

0 comments on commit ec82eb2

Please sign in to comment.