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