blob: f6760990b8810e246b509e70aa00645a00c02096 [file] [log] [blame]
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +00001/*
2 * Check that -Wall works as intended
Mikhail Glushenkov113ec352008-11-25 21:38:12 +00003 * RUN: llvmc -Wall %s -o %t
Daniel Dunbarfbc18f82009-09-13 01:40:48 +00004 * RUN: %abs_tmp | grep hello
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +00005 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}