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

#include <stdio.h>

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