mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-08 21:37:35 +00:00
dc50e8c5fa
llvm-svn: 50749
10 lines
179 B
C++
10 lines
179 B
C++
// Check that we can compile files of different types together.
|
|
// RUN: llvmc2 %s %p/together.c -o %t
|
|
// RUN: ./%t | grep hello
|
|
|
|
extern "C" void test();
|
|
|
|
int main() {
|
|
test();
|
|
}
|