blob: 2b2896f6d11a1d7d43b747a3092ef3cb10463f95 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -O3 -emit-llvm -o -
2// PR1175
3
4struct empty { };
5
6void foo(struct empty *p) {
7 p++;
8}
9