mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
17f04ee89a
llvm-svn: 34088
10 lines
185 B
C
10 lines
185 B
C
// RUN: %llvmgcc %s -g -S -o - | llvm-as | opt -std-compile-opts | \
|
|
// RUN: llvm-dis | grep "test/CFrontend"
|
|
// PR676
|
|
|
|
#include <stdio.h>
|
|
|
|
void test() {
|
|
printf("Hello World\n");
|
|
}
|