Skip to content

Commit 291a7fc

Browse files
committed
[LLDB] Fix build error after D142214
1 parent a4753f5 commit 291a7fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/Disassembler/LLVMC/DisassemblerLLVMC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ bool DisassemblerLLVMC::MCDisasmInstance::IsLoad(llvm::MCInst &mc_inst) const {
13841384

13851385
bool DisassemblerLLVMC::MCDisasmInstance::IsAuthenticated(
13861386
llvm::MCInst &mc_inst) const {
1387-
auto InstrDesc = m_instr_info_up->get(mc_inst.getOpcode());
1387+
const auto &InstrDesc = m_instr_info_up->get(mc_inst.getOpcode());
13881388

13891389
// Treat software auth traps (brk 0xc470 + aut key, where 0x70 == 'p', 0xc4
13901390
// == 'a' + 'c') as authenticated instructions for reporting purposes, in

0 commit comments

Comments
 (0)