For PR1338: Rename test dirs
[oota-llvm.git] / test / FrontendC / 2007-02-04-EmptyStruct.c
1 // RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
2 // PR1175
3
4 struct empty { };
5
6 void foo(struct empty *p) {
7    p++;
8 }
9