aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/118 llvm ir and assembly/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/118 llvm ir and assembly/main.cpp')
-rw-r--r--test cases/common/118 llvm ir and assembly/main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/test cases/common/118 llvm ir and assembly/main.cpp b/test cases/common/118 llvm ir and assembly/main.cpp
new file mode 100644
index 0000000..aac3cbf
--- /dev/null
+++ b/test cases/common/118 llvm ir and assembly/main.cpp
@@ -0,0 +1,15 @@
+#include <stdio.h>
+
+extern "C" {
+ unsigned square_unsigned (unsigned a);
+}
+
+int main (void)
+{
+ unsigned int ret = square_unsigned (2);
+ if (ret != 4) {
+ printf("Got %u instead of 4\n", ret);
+ return 1;
+ }
+ return 0;
+}