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
Fix typo
[llvm/msp430.git]
/
test
/
LLVMC
/
wall.c
blob
2c72ea69929d037e595c20e8e12b9f0ba5eebfc7
1
/*
2
* Check that -Wall works as intended
3
* RUN: llvmc -Wall %s -o %t
4
* RUN: ./%t | grep hello
5
*/
6
7
#include <stdio.h>
8
9
int
main
() {
10
printf
(
"hello
\n
"
);
11
return
0
;
12
}