llvm-6502/test/LLVMC/C/wall.c
2009-09-13 01:40:48 +00:00

13 lines
177 B
C

/*
* Check that -Wall works as intended
* RUN: llvmc -Wall %s -o %t
* RUN: %abs_tmp | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}