aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/AddMult.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/AddMult.c')
-rw-r--r--c_compiler/test/in/AddMult.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c_compiler/test/in/AddMult.c b/c_compiler/test/in/AddMult.c
index a8fa566..92403bc 100644
--- a/c_compiler/test/in/AddMult.c
+++ b/c_compiler/test/in/AddMult.c
@@ -4,7 +4,8 @@ int main() {
int b = 5;
int c = 7;
int d = 3;
- x = a * b + c * d;
+ x = a * b + c * d - d / 3 + 2;
+ x = c - 2 * b + 3 / d - 5 * d;
return x;
}