blob: 431dccffc1a13d1af7d8353833fc199d0442ddae [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | not grep {foo\\* sub}
2// This should not produce a subtrace constantexpr of a pointer
3struct foo {
4 int Y;
5 char X[100];
6} F;
7
8int test(char *Y) {
9 return Y - F.X;
10}