Small fix found by test, not sure if it breaks the larger picture

This commit is contained in:
Adam
2015-10-25 20:08:57 -04:00
parent 018a3619a8
commit 1f716bf10d
2 changed files with 13 additions and 3 deletions

View File

@@ -17,14 +17,15 @@ import org.junit.Test;
class TestClass
{
private static int dummy(Object... args) { return 0; }
private static final int var = 42;
private int field1051 = -1611704481;
private int field2701;
private int field2138, field2130;
public void test()
{
new TestClass(); // to trick executor to call the constructor
TestClass tc = new TestClass(); // to trick executor to call the constructor
int var = 42;
if (-1 != this.field1051 * 1928543073)
{
@@ -36,6 +37,13 @@ class TestClass
{
field2701 += -1868498967 * var;
}
field2138 = tc.dummy() * 1510226873;
field2130 = 572701809 * tc.field2138;
if (-1722291303 * field2130 >= var)
{
var = field2130 * -1722291303;
}
}
}