mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
5a403195b3
llvm-svn: 50761
10 lines
189 B
C++
10 lines
189 B
C++
// Check that we can compile files of different types together.
|
|
// RUN: llvmc2 %s %p/test_data/together.c -o %t
|
|
// RUN: ./%t | grep hello
|
|
|
|
extern "C" void test();
|
|
|
|
int main() {
|
|
test();
|
|
}
|