mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
a5e841799d
llvm-svn: 28822
9 lines
158 B
C
9 lines
158 B
C
// RUN: %llvmgcc %s -g -S -o - | gccas | llvm-dis | grep "test/Regression/CFrontend"
|
|
// PR676
|
|
|
|
#include <stdio.h>
|
|
|
|
void test() {
|
|
printf("Hello World\n");
|
|
}
|