aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-19 23:43:42 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-19 23:43:42 +0000
commitb0caad48b1a2c90a03f5d130a50f3fdee1c097a5 (patch)
treee1f0bacbcbd4a92aee05b320eb5a8a1179dd58c2
parent2ba77a78a37448eeeff59ed10fff06676b911fb7 (diff)
downloadCompiler-b0caad48b1a2c90a03f5d130a50f3fdee1c097a5.tar.gz
Compiler-b0caad48b1a2c90a03f5d130a50f3fdee1c097a5.zip
Added large numbers
-rw-r--r--c_compiler/test/in/large_int.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/c_compiler/test/in/large_int.c b/c_compiler/test/in/large_int.c
new file mode 100644
index 0000000..0685460
--- /dev/null
+++ b/c_compiler/test/in/large_int.c
@@ -0,0 +1,7 @@
+int main()
+{
+ int x = 238823948;
+ int y = 119411974;
+
+ return x / y;
+}