diff options
Diffstat (limited to 'meson/test cases/common/118 llvm ir and assembly/main.cpp')
-rw-r--r-- | meson/test cases/common/118 llvm ir and assembly/main.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meson/test cases/common/118 llvm ir and assembly/main.cpp b/meson/test cases/common/118 llvm ir and assembly/main.cpp new file mode 100644 index 000000000..aac3cbfef --- /dev/null +++ b/meson/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; +} |