mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 22:43:53 +00: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;
|
|
}
|