llvm-6502/test/FrontendC/2007-02-04-EmptyStruct.c

10 lines
112 B
C
Raw Normal View History

// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
// PR1175
struct empty { };
void foo(struct empty *p) {
p++;
}