llvm-6502/test/LLVMC/C/wall.c

14 lines
195 B
C
Raw Normal View History

/*
* 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;
}