blob: 54468a56450ed60f848ec60203b9416be09d7f92 [file] [log] [blame]
Chris Lattnere63632f2004-11-27 19:44:07 +00001// RUN: %llvmgcc %s -S -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}