repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git]
/
test
/
LLVMC
/
C
/
opt-test.c
blob
d69dc9b479f87b3853b6466b02edd14b5b2a7640
1
/*
2
* Check that the -opt switch works.
3
* RUN: llvmc %s -opt -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
}