diff options
| author | Nitesh Jain <nitesh.jain@imgtec.com> | 2016-09-09 10:46:25 +0000 |
|---|---|---|
| committer | Nitesh Jain <nitesh.jain@imgtec.com> | 2016-09-09 10:46:25 +0000 |
| commit | 817bc16d19447328ee9cedf51a8f85cd4fa2fc14 (patch) | |
| tree | 27f3a58300c8fed760cbeabf008355b1d425f6fe /lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp | |
| parent | e9cb0d89c4e9224e2c3acac8b6aedff75000e2a9 (diff) | |
| download | bcm5719-llvm-817bc16d19447328ee9cedf51a8f85cd4fa2fc14.tar.gz bcm5719-llvm-817bc16d19447328ee9cedf51a8f85cd4fa2fc14.zip | |
[LLDB][MIPS] Fix Emulation for JALR64 Instruction
Subscribers: jaydeep, bhushan, slthakur, sdardis, lldb-commits
llvm-svn: 281032
Diffstat (limited to 'lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp')
| -rw-r--r-- | lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp b/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp index 3a0fe39e080..1c7d95f39ec 100644 --- a/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp +++ b/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp @@ -869,6 +869,7 @@ EmulateInstructionMIPS64::GetOpcodeForInstruction(const char *op_name) { {"JAL", &EmulateInstructionMIPS64::Emulate_JAL, "JAL target"}, {"JALX", &EmulateInstructionMIPS64::Emulate_JAL, "JALX target"}, {"JALR", &EmulateInstructionMIPS64::Emulate_JALR, "JALR target"}, + {"JALR64", &EmulateInstructionMIPS64::Emulate_JALR, "JALR target"}, {"JALR_HB", &EmulateInstructionMIPS64::Emulate_JALR, "JALR.HB target"}, {"JIALC", &EmulateInstructionMIPS64::Emulate_JIALC, "JIALC rt,offset"}, {"JIC", &EmulateInstructionMIPS64::Emulate_JIC, "JIC rt,offset"}, |

