infrastructure

This commit is contained in:
Michael Bogdanov
2016-09-21 12:12:18 +03:00
committed by Dmitry Petrov
parent ca97f17cb6
commit 95c88e4445
7 changed files with 27 additions and 12 deletions
+1
View File
@@ -14,5 +14,6 @@
<orderEntry type="module" module-name="backend-common" exported="" />
<orderEntry type="module" module-name="util" />
<orderEntry type="module" module-name="backend.jvm" />
<orderEntry type="module" module-name="ir.tree" />
</component>
</module>
@@ -523,7 +523,7 @@ public class AsmUtil {
mv.visitInsn(L2I);
}
static void genInvertBoolean(InstructionAdapter v) {
public static void genInvertBoolean(InstructionAdapter v) {
v.iconst(1);
v.xor(Type.INT_TYPE);
}