mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-26 22:34:39 +00: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");
|
|
}
|