1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/FrontendC/2006-01-13-Includes.c
Nick Lewycky a02482cfaa Unbreak this test.
llvm-svn: 51726
2008-05-30 05:02:37 +00:00

10 lines
185 B
C

// RUN: %llvmgcc %s -g -S -o - | llvm-as | opt -std-compile-opts | \
// RUN: llvm-dis | grep {test/FrontendC}
// PR676
#include <stdio.h>
void test() {
printf("Hello World\n");
}