aboutsummaryrefslogtreecommitdiffstats
path: root/test/LLVMC/opt-test.c
blob: 25ca66a5c6b45e7447fb695aea5010ff6e148772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Check that the -opt switch works.
 * RUN: llvmc2 %s -opt -o %t
 * RUN: ./%t | grep hello
 */

#include <stdio.h>

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