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