aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/14.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/14.c')
-rw-r--r--c_compiler/test/in/14.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/c_compiler/test/in/14.c b/c_compiler/test/in/14.c
deleted file mode 100644
index 94506d7..0000000
--- a/c_compiler/test/in/14.c
+++ /dev/null
@@ -1,12 +0,0 @@
-int function_1(int a, int b) {
- int x = 0;
-
- do {
- int c = a + b;
- x += a;
- x = x * b;
- x -= c;
- } while(x < 500);
-
- return x;
-}