mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
10 lines
112 B
C
10 lines
112 B
C
|
// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
|
||
|
// PR1175
|
||
|
|
||
|
struct empty { };
|
||
|
|
||
|
void foo(struct empty *p) {
|
||
|
p++;
|
||
|
}
|
||
|
|