blob: 7924def203ab8e3d904e5f2be23d7171fff48df0 [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
Daniel Dunbarfbc18f82009-09-13 01:40:48 +00004 * RUN: %abs_tmp | grep hello
Jeffrey Yasskinf65b0e92010-03-21 08:12:46 +00005 * XFAIL: vg_leak
Mikhail Glushenkov74a0c282008-05-30 19:56:27 +00006 */
7
8#include <stdio.h>
9
10int main() {
11 printf("hello\n");
12 return 0;
13}