blob: d1dde41bb33052f5b1b6dcb3fa27c07a09d4199d [file] [log] [blame]
Mikhail Glushenkov52a54132008-05-30 06:23:29 +00001/*
2 * Check that the 'sink' options work.
3 * RUN: llvmc2 -v -Wall %s -o %t |& grep "Wall"
4 * RUN: ./%t | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}