]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/LLVMC/wall.c
Update llvm to r84175.
[FreeBSD/FreeBSD.git] / test / LLVMC / wall.c
1 /*
2  * Check that -Wall works as intended
3  * RUN: llvmc -Wall %s -o %t
4  * RUN: ./%t | grep hello
5  */
6
7 #include <stdio.h>
8
9 int main() {
10     printf("hello\n");
11     return 0;
12 }