blob: 9b928fc5cf1f96b924635fd27def79e26e67283f [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
4
5#include <stdio.h>
6
7void test() {
8 printf("Hello World\n");
9}