Fixed the else jump It was falling through
This commit is contained in:
@ -13,14 +13,13 @@ bar (r,s) := {
|
||||
entry (arg) := {
|
||||
[ integer: result ; rec: w]
|
||||
if ( result = result ) then {
|
||||
result := result + 8;
|
||||
if ( result < w.y ) then {
|
||||
if ( result < w.y ) then {
|
||||
result := 8;
|
||||
} else {
|
||||
result := 9;
|
||||
}
|
||||
}(* *)
|
||||
} else {
|
||||
result := bar('c', 7);
|
||||
result := 1; (* bar('c', 7); *)
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user