llvm-6502/test/LLVMC/hello.c
Mikhail Glushenkov 3c30e6c653 First small tests for llvmc2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50734 91177308-0d34-0410-b5e6-96231b3b80d8
2008-05-06 17:24:54 +00:00

13 lines
170 B
C

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