Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
b2d3169d96ee780e6b8f43230e36e41d97ed3140
/
.
/
test
/
LLVMC
/
opt-test.c
blob: ed2df52fed7c53b0ab815794634b0931fbd044f6 [
file
] [
log
] [
blame
]
/*
* Check that the -opt switch works.
* RUN: llvmc %s -opt -o %t
* RUN: ./%t | grep hello
*/
#include
<stdio.h>
int
main
()
{
printf
(
"hello\n"
);
return
0
;
}