repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
LLVMC
/
C
/
hello.c
blob
29ad39fd2cb6ab36ad9ae62e1d0f037744e54449
1
/*
2
* Check that we can compile helloworld
3
* RUN: llvmc %s -o %t
4
* RUN: %abs_tmp | grep hello
5
* XFAIL: vg_leak
6
*/
7
8
#include <stdio.h>
9
10
int
main
() {
11
printf
(
"hello
\n
"
);
12
return
0
;
13
}