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