Skip to content

Commit d28eb4a

Browse files
committedAug 1, 2018
[1.10>master] [MERGE #5560 @rajatd] Insert bytecode uses before (vs after) the branch/compare instruction during UnsignedCmpPeep. OS#17686612
Merge pull request #5560 from rajatd:unsignedCmpPeep-bcu-1.10
2 parents e1e73e7 + d28a85a commit d28eb4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/Backend/FlowGraph.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3958,7 +3958,6 @@ bool FlowGraph::UnsignedCmpPeep(IR::Instr *cmpInstr)
39583958
}
39593959

39603960
IR::ByteCodeUsesInstr * bytecodeInstr = IR::ByteCodeUsesInstr::New(cmpInstr);
3961-
cmpInstr->InsertAfter(bytecodeInstr);
39623961

39633962
if (cmpSrc1 != newSrc1)
39643963
{
@@ -3997,6 +3996,7 @@ bool FlowGraph::UnsignedCmpPeep(IR::Instr *cmpInstr)
39973996
}
39983997
}
39993998

3999+
cmpInstr->InsertBefore(bytecodeInstr);
40004000
return true;
40014001
}
40024002

0 commit comments

Comments
 (0)
Please sign in to comment.