mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
10 lines
164 B
C
10 lines
164 B
C
|
// RUN: %llvmgcc %s -g -S -o - | gccas | llvm-dis | grep "llvm/test/Regression/CFrontend"
|
||
|
|
||
|
// PR676
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void test() {
|
||
|
printf("Hello World\n");
|
||
|
}
|