Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
2f82376c485f07dd9bfd6f563f6e194843c5060c
/
.
/
test
/
LLVMC
/
hello.m
blob: 1cda9c3a3405eafd52a0061cea0486c34b403c8d [
file
] [
log
] [
blame
]
/*
* 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
;
}