1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 00:12:50 +01:00
llvm-mirror/test/LLVMC/ObjC/hello.m

13 lines
173 B
Mathematica
Raw Normal View History

/*
* Check that we can compile helloworld
* RUN: llvmc %s -o %t
* RUN: %abs_tmp | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}