mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-11 15:26:07 +00:00
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/FrontendC}
|
|
// PR676
|
|
|
|
#include <stdio.h>
|
|
|
|
void test() {
|
|
printf("Hello World\n");
|
|
}
|