summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/cps/cps024.cmm
blob: f24cd5e26ef91b4c4f333cf973727ab3eeb3e403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test update frames

foo1(bits32 x, bits32 y) jump update (x, y) {
  bits32 z;
  return (z);
}

foo2(bits32 x, bits32 y) jump update (x, y) {
  bits32 z;
  foreign "C--" bar() "safe";
  return (z);
}