repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
LLVMC
/
ObjC
/
hello.m
blob
b2d903f8d53f1d2b362ba39882d0ed9c2a82e28c
1
/*
2
* Check that we can compile helloworld
3
* RUN: llvmc %s -o %t
4
* RUN: %abs_tmp | grep hello
5
*/
6
7
#include <stdio.h>
8
9
int main() {
10
printf("hello\n");
11
return 0;
12
}