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