summaryrefslogtreecommitdiffstats
path: root/llvm/test/LLVMC/clang_hello.c
blob: b72ec5d7226d9c7b429821ee7c7f250476bfd359 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Test basic functionality of llvmc -clang
 *
 * RUN: llvmc -clang %s -o %t
 * RUN: ./%t | grep {Hello Clang}
 */

int main() {
    printf("Hello Clang world!\n");
    return 0;
}
OpenPOWER on IntegriCloud