blob: bf917bcdea70c8fa6c547d2d63deffa3aa9a9121 [file] [log] [blame]
Mikhail Glushenkoved205692008-05-06 17:24:54 +00001/*
2 * Check that we can compile helloworld
3 * RUN: llvmc2 %s -o %t
4 * RUN: ./%t | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}