Improved branch compilation
This commit is contained in:
@ -25,31 +25,15 @@ main() {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if x >= 1 {
|
||||
if x >= 1 || 1 <= x {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if 1 <= x {
|
||||
if x == inc(x) || x == dec(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if x == inc(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if x == dec(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if inc(0) == x {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if dec(0) == x {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
if inc(x) == dec(x) {
|
||||
if inc(0) == x || dec(0) == x || inc(x) == dec(x) {
|
||||
exit(1)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user