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