blob: 36813ba0f833b6a95c2c56289a1ea1c8279445ea [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
Jeffrey Yasskinf65b0e92010-03-21 08:12:46 +00005 * XFAIL: vg_leak
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +00006 */
7
8#include <stdio.h>
9
10int main() {
11 printf("hello\n");
12 return 0;
13}