repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Refine the Dwarf writer timers so that they measure exception writing and debug
[llvm/msp430.git]
/
test
/
LLVMC
/
sink.c
blob
3edbf78112e6d80a9cd1186152d9a9d7e4a17888
1
/*
2
* Check that the 'sink' options work.
3
* RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
4
* RUN: ./%t | grep hello
5
*/
6
7
#include <stdio.h>
8
9
int
main
() {
10
printf
(
"hello
\n
"
);
11
return
0
;
12
}