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