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