Sign in
fuchsia
/
third_party
/
llvm-project
/
refs/heads/upstream/release/2.4.x
/
.
/
llvm
/
test
/
LLVMC
/
hello.c
blob: bf917bcdea70c8fa6c547d2d63deffa3aa9a9121 [
file
] [
log
] [
blame
] [
edit
]
/*
* 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
;
}