1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/FrontendC/2007-02-04-EmptyStruct.c

10 lines
112 B
C
Raw Normal View History

2007-02-05 00:55:04 +01:00
// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
// PR1175
struct empty { };
void foo(struct empty *p) {
p++;
}