blob: 7924def203ab8e3d904e5f2be23d7171fff48df0 [file] [log] [blame]
/*
* Check that the -opt switch works.
* RUN: llvmc %s -opt -o %t
* RUN: %abs_tmp | grep hello
* XFAIL: vg_leak
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}