Fix typo
[llvm/msp430.git] / test / LLVMC / hello.c
blob1cda9c3a3405eafd52a0061cea0486c34b403c8d
1 /*
2 * Check that we can compile helloworld
3 * RUN: llvmc %s -o %t
4 * RUN: ./%t | grep hello
5 */
7 #include <stdio.h>
9 int main() {
10 printf("hello\n");
11 return 0;