mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
d3a1aefed9
llvm-svn: 81663
13 lines
173 B
Objective-C
13 lines
173 B
Objective-C
/*
|
|
* 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;
|
|
}
|