mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 07:41:14 +00:00
9 lines
147 B
C
9 lines
147 B
C
// RUN: %llvmgcc %s -g -S -o - | gccas | llvm-dis | grep "test/CFrontend"
|
|
// PR676
|
|
|
|
#include <stdio.h>
|
|
|
|
void test() {
|
|
printf("Hello World\n");
|
|
}
|