Open
Description
I have the following code:
Local local1 = methodCodeBlock.newLocal(TypeId.INT);
Local parameter = methodCodeBlock.getParameter(0, TypeId.INT);
...
methodCodeBlock.compare(Comparison.LT, label, local1, parameter);
The expected result should be:
if(local1 >= parameter)
...
But when I invoke the DexMaker#generate
, the result I see is:
if(parameter >= local1)
...
Is this a bug? Or am I using it incorrectly? If I use it incorrectly, can someone tell me how to use it correctly? Thank a lot!
Is this project still alive? The last update I saw was last May
Metadata
Metadata
Assignees
Labels
No labels