blob: 25ca66a5c6b45e7447fb695aea5010ff6e148772 [file] [log] [blame]
Mikhail Glushenkov74a0c282008-05-30 19:56:27 +00001/*
2 * Check that the -opt switch works.
3 * RUN: llvmc2 %s -opt -o %t
4 * RUN: ./%t | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}