mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-02 10:21:54 +00:00
b1adbf1413
llvm-svn: 60766
12 lines
184 B
C
12 lines
184 B
C
/*
|
|
* Test basic functionality of llvmc -clang
|
|
*
|
|
* RUN: llvmc -clang %s -o %t
|
|
* RUN: ./%t | grep {Hello Clang}
|
|
*/
|
|
|
|
int main() {
|
|
printf("Hello Clang world!\n");
|
|
return 0;
|
|
}
|