2008-05-30 19:56:27 +00:00
|
|
|
/*
|
|
|
|
* Check that the -opt switch works.
|
2008-11-25 21:38:12 +00:00
|
|
|
* RUN: llvmc %s -opt -o %t
|
2009-09-13 01:40:48 +00:00
|
|
|
* RUN: %abs_tmp | grep hello
|
2008-05-30 19:56:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
printf("hello\n");
|
|
|
|
return 0;
|
|
|
|
}
|