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