revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git] / test / LLVMC / C / wall.c
blobf6760990b8810e246b509e70aa00645a00c02096
1 /*
2 * Check that -Wall works as intended
3 * RUN: llvmc -Wall %s -o %t
4 * RUN: %abs_tmp | grep hello
5 */
7 #include <stdio.h>
9 int main() {
10 printf("hello\n");
11 return 0;