summaryrefslogtreecommitdiff
path: root/testsuite/tests/cps/cps016.cmm
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/cps/cps016.cmm')
-rw-r--r--testsuite/tests/cps/cps016.cmm14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/tests/cps/cps016.cmm b/testsuite/tests/cps/cps016.cmm
new file mode 100644
index 0000000000..44d6057b65
--- /dev/null
+++ b/testsuite/tests/cps/cps016.cmm
@@ -0,0 +1,14 @@
+// Test whether extra proc-points are generated
+// by a label after a call such as with a heap check.
+
+foo1 () {
+ bits32 p, q;
+ bits32 x, y, z;
+ (p, q) = foreign "C--" bar(1, 2) "safe";
+L:
+ if (Hp < HpLim) {
+ (p, q) = foreign "C--" do_gc() "safe";
+ goto L;
+ }
+ return (p+q+x+y+z);
+}