Skip to content
Snippets Groups Projects
Commit bc85c2c7 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

arm32 fix-calls adjustment

parent 87b7f4f1
No related branches found
No related tags found
No related merge requests found
Pipeline #3234 failed
......@@ -502,7 +502,8 @@ class FixCalls_t : public TransformStep_t
void fix_call(Instruction_t* insn, FileIR_t *firp, bool can_unpin)
{
// doesn't work for ARM64 yet.
if(firp->getArchitecture()->getMachineType()==admtAarch64)
const auto mt = firp->getArchitecture()->getMachineType();
if( mt == admtAarch64 || mt == admtArm32)
return;
/* record the possibly new indirect branch target if this call gets fixed */
......
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