Silence -Wunused-variable in release builds.
[llvm/stm8.git] / test / LLVMC / C / wall.c
blob36813ba0f833b6a95c2c56289a1ea1c8279445ea
1 /*
2 * Check that -Wall works as intended
3 * RUN: llvmc -Wall %s -o %t
4 * RUN: %abs_tmp | grep hello
5 * XFAIL: vg_leak
6 */
8 #include <stdio.h>
10 int main() {
11 printf("hello\n");
12 return 0;