test for something more interesting than not crashing
[oota-llvm.git] / test / CFrontend / 2006-01-13-Includes.c
1 // RUN: %llvmgcc %s -g -S -o - | llvm-as | opt -std-compile-opts | \
2 // RUN:   llvm-dis | grep {test/CFrontend}
3 // PR676
4
5 #include <stdio.h>
6
7 void test() {
8   printf("Hello World\n");
9 }