summaryrefslogtreecommitdiff
path: root/testsuite/tests/cmm/should_compile/selfloop.cmm
blob: 6f553ca1a8a8aaf6ebd4a5b9bfa44b3300437929 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "Cmm.h"

testLoop (W_ counter)
{
loop:
  if (counter > 0) {
    counter = counter - 1;
    goto loop;
  }
  return (counter);
}