diff options
Diffstat (limited to 'test-chill/test-cases/examples/chill/test_align.c')
-rw-r--r-- | test-chill/test-cases/examples/chill/test_align.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test-chill/test-cases/examples/chill/test_align.c b/test-chill/test-cases/examples/chill/test_align.c new file mode 100644 index 0000000..d1365ca --- /dev/null +++ b/test-chill/test-cases/examples/chill/test_align.c @@ -0,0 +1,20 @@ +int main() { + + int m, n; + int a[10], b[10]; + int i, j; + for (i = 0; i < n; i++) { + for (j = 0; j < n; j++) { + a[i] = 1; + } + + for (j = 0; j < n; j++) { + b[i] -= 1; + } + + } + + return 0; + +} + |