Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
f65b0e9b455da8ab2936c9a6d4ead5c92716e13a
/
.
/
test
/
LLVMC
/
C
/
hello.c
blob: 29ad39fd2cb6ab36ad9ae62e1d0f037744e54449 [
file
] [
log
] [
blame
]
/*
* Check that we can compile helloworld
* RUN: llvmc %s -o %t
* RUN: %abs_tmp | grep hello
* XFAIL: vg_leak
*/
#include
<stdio.h>
int
main
()
{
printf
(
"hello\n"
);
return
0
;
}