summaryrefslogtreecommitdiff
path: root/tests/projects/c/llvm_compiler_rt/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/c/llvm_compiler_rt/src/main.c')
-rw-r--r--tests/projects/c/llvm_compiler_rt/src/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/projects/c/llvm_compiler_rt/src/main.c b/tests/projects/c/llvm_compiler_rt/src/main.c
new file mode 100644
index 000000000..e12ade9ad
--- /dev/null
+++ b/tests/projects/c/llvm_compiler_rt/src/main.c
@@ -0,0 +1,5 @@
+int main(int argc, char **argv) {
+ __int128 a = 123;
+ __int128 b = 1;
+ return a / b;
+}