repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
LLVMC
/
C++
/
together.cpp
blob
925215a4db51623053b262c91fb5159765f98faf
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
// XFAIL: vg
5
6
extern
"C"
void
test
();
7
8
int
main
() {
9
test
();
10
}