blob: d69dc9b479f87b3853b6466b02edd14b5b2a7640 [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
Mikhail Glushenkov74a0c282008-05-30 19:56:27 +00005 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}