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
Implement bswap
[llvm/msp430.git]
/
test
/
LLVMC
/
together.cpp
blob
b07250e9d0b3ead139816baa914a23fff8d7fa19
1
// Check that we can compile files of different types together.
2
// RUN: llvmc %s %p/test_data/together.c -o %t
3
// RUN: ./%t | grep hello
4
5
extern
"C"
void
test
();
6
7
int
main
() {
8
test
();
9
}