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