mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
89bfeb825b
llvm-svn: 60048
13 lines
192 B
C
13 lines
192 B
C
/*
|
|
* Check that the 'sink' options work.
|
|
* RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
|
|
* RUN: ./%t | grep hello
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("hello\n");
|
|
return 0;
|
|
}
|