summaryrefslogtreecommitdiff
path: root/test/LLVMC/C/opt-test.c
blob: 7924def203ab8e3d904e5f2be23d7171fff48df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Check that the -opt switch works.
 * RUN: llvmc %s -opt -o %t
 * RUN: %abs_tmp | grep hello
 * XFAIL: vg_leak
 */

#include <stdio.h>

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