1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-06 20:33:54 +00:00
2008-11-25 21:38:12 +00:00

13 lines
171 B
C

/*
* Check that the -opt switch works.
* RUN: llvmc %s -opt -o %t
* RUN: ./%t | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}