blob: 95d8e8a60502ab62344a2afa8d1400a9a5cc4d74 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -g -S -o - | llvm-as | opt -std-compile-opts | \
Nick Lewyckyd62dd0a2008-05-30 05:02:37 +00002// RUN: llvm-dis | grep {test/FrontendC}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003// PR676
Devang Patel1c04f262009-10-13 01:51:29 +00004// XFAIL: *
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
6#include <stdio.h>
7
8void test() {
9 printf("Hello World\n");
10}