1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/LLVMC/hello.c

13 lines
169 B
C
Raw Normal View History

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