mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
13 lines
172 B
C
13 lines
172 B
C
|
/*
|
||
|
* Check that the -opt switch works.
|
||
|
* RUN: llvmc2 %s -opt -o %t
|
||
|
* RUN: ./%t | grep hello
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("hello\n");
|
||
|
return 0;
|
||
|
}
|