summaryrefslogtreecommitdiff
path: root/test/LLVMC/hello.m
blob: 1cda9c3a3405eafd52a0061cea0486c34b403c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Check that we can compile helloworld
 * RUN: llvmc %s -o %t
 * RUN: ./%t | grep hello
 */

#include <stdio.h>

int main() {
    printf("hello\n");
    return 0;
}