1 // RUN: %llvmgcc %s -O3 -S -o - 2 // PR1175 3 4 struct empty { }; 5 6 void foo(struct empty *p) { 7 p++; 8 } 9 10