hanchenye-llvm-project/llvm/test/LLVMC/ObjC/hello.m

13 lines
173 B
Mathematica
Raw Normal View History

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