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