mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
13 lines
170 B
C
13 lines
170 B
C
|
/*
|
||
|
* Check that we can compile helloworld
|
||
|
* RUN: llvmc2 %s -o %t
|
||
|
* RUN: ./%t | grep hello
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("hello\n");
|
||
|
return 0;
|
||
|
}
|