mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60766 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
206 B
C
14 lines
206 B
C
/*
|
|
* Test that `llvmc -clang` can link multiple files
|
|
*
|
|
* RUN: llvmc -clang %s %p/test_data/clang_together.c -o %t
|
|
* RUN: ./%t | grep {Hello Clang}
|
|
*/
|
|
|
|
void f();
|
|
|
|
int main() {
|
|
f();
|
|
return 0;
|
|
}
|