summaryrefslogtreecommitdiff
path: root/test/cminor/stopcopy.cmp
diff options
context:
space:
mode:
Diffstat (limited to 'test/cminor/stopcopy.cmp')
-rw-r--r--test/cminor/stopcopy.cmp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/cminor/stopcopy.cmp b/test/cminor/stopcopy.cmp
index 9ac39be..eb2b3e1 100644
--- a/test/cminor/stopcopy.cmp
+++ b/test/cminor/stopcopy.cmp
@@ -174,8 +174,9 @@ extern "malloc" : int -> int
var from, to;
from = "malloc"(hsize) : int -> int;
+ if (from == 0) return -1;
to = "malloc"(hsize) : int -> int;
- if (from == 0 || to == 0) return -1;
+ if (to == 0) return -1;
int32["fromspace_start_ptr"] = from;
int32["fromspace_end_ptr"] = from + hsize;
int32["tospace_start_ptr"] = to;