blob: 25ca66a5c6b45e7447fb695aea5010ff6e148772 [file] [log] [blame]
/*
* 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;
}