We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the following method:
public int f() { int i = Integer.parseInt("1"); // line 5 boolean b = Boolean.parseBoolean("true"); // line 6 return (b ? i : 0) + (!b ? i : 0); // line 7 }
The following rawInstList is generated.
rawInstList
label #0: line number 5: i = java.lang.Integer.parseInt("1") label #1: line number 6: b = java.lang.Boolean.parseBoolean("true") label #2: line number 7: if (b == false) goto #5 else #4 label #5: goto #3 label #4: goto #6 label #3: i = 0 goto #6 label #6: if (b != 0) goto #9 else #8 label #9: goto #7 label #8: goto #10 label #7: i = 0 goto #10 label #10: %10 = i + i return %10 label #11:
According to the rawInstList the code returns 0, while executing the code without JacoDB returns 1.
0
1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
For the following method:
The following
rawInstList
is generated.According to the
rawInstList
the code returns0
, while executing the code without JacoDB returns1
.The text was updated successfully, but these errors were encountered: