2008-05-07 01:24:54 +08:00
|
|
|
/*
|
|
|
|
* Check that we can compile helloworld
|
2008-11-26 05:38:12 +08:00
|
|
|
* RUN: llvmc %s -o %t
|
2009-09-13 09:40:48 +08:00
|
|
|
* RUN: %abs_tmp | grep hello
|
2008-05-07 01:24:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
printf("hello\n");
|
|
|
|
return 0;
|
|
|
|
}
|