diff options
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/InMemoryAssembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/InMemoryAssembler.cpp b/llvm/tools/llvm-exegesis/lib/InMemoryAssembler.cpp index 3a60d03ccff..7e1e58ff888 100644 --- a/llvm/tools/llvm-exegesis/lib/InMemoryAssembler.cpp +++ b/llvm/tools/llvm-exegesis/lib/InMemoryAssembler.cpp @@ -117,7 +117,7 @@ static void fillMachineFunction(llvm::MachineFunction &MF, llvm::MachineBasicBlock *MBB = MF.CreateMachineBasicBlock(); MF.push_back(MBB); const llvm::MCInstrInfo *MCII = MF.getTarget().getMCInstrInfo(); - const llvm::DebugLoc DL; + llvm::DebugLoc DL; for (const llvm::MCInst &Inst : Instructions) { const unsigned Opcode = Inst.getOpcode(); const llvm::MCInstrDesc &MCID = MCII->get(Opcode); |