/* * Check that we can compile helloworld * RUN: llvmc2 %s -o %t * RUN: ./%t | grep hello */ #include int main() { printf("hello\n"); return 0; }