diff options
Diffstat (limited to 'testsuite/tests/cps/cps014.cmm')
-rw-r--r-- | testsuite/tests/cps/cps014.cmm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/tests/cps/cps014.cmm b/testsuite/tests/cps/cps014.cmm new file mode 100644 index 0000000000..3b8b651c43 --- /dev/null +++ b/testsuite/tests/cps/cps014.cmm @@ -0,0 +1,14 @@ +// Test explicit continuations. + +// Note, we might want to check about suffix on foo2 (i.e. "_entry"). +// I'm not sure that that is right. + +foo1 (bits32 update) jump foo2(update) { + bits32 x; + return (x); +} + +INFO_TABLE_RET (foo2, 0, bits32 update) (bits32 x) { + bits32[update] = x; + return (x); +} |