aboutsummaryrefslogtreecommitdiffstats
path: root/test/LLVMC/sink.c
blob: 3edbf78112e6d80a9cd1186152d9a9d7e4a17888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Check that the 'sink' options work.
 * RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
 * RUN: ./%t | grep hello
 */

#include <stdio.h>

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