Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
8b56a90bec639665fc024896d2fc2bdd095c76a3
/
.
/
test
/
LLVMC
/
sink.c
blob: d1dde41bb33052f5b1b6dcb3fa27c07a09d4199d [
file
] [
log
] [
blame
]
/*
* Check that the 'sink' options work.
* RUN: llvmc2 -v -Wall %s -o %t |& grep "Wall"
* RUN: ./%t | grep hello
*/
#include
<stdio.h>
int
main
()
{
printf
(
"hello\n"
);
return
0
;
}