blob: bf917bcdea70c8fa6c547d2d63deffa3aa9a9121 [file] [log] [blame]
/*
* Check that we can compile helloworld
* RUN: llvmc2 %s -o %t
* RUN: ./%t | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}