1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Regression/CFrontend/2004-11-27-InvalidConstantExpr.c
Chris Lattner af47b6f905 New testcase for PR424
llvm-svn: 18281
2004-11-27 19:44:07 +00:00

11 lines
200 B
C

// RUN: %llvmgcc %s -S -o - | not grep 'foo\* sub'
// This should not produce a subtrace constantexpr of a pointer
struct foo {
int Y;
char X[100];
} F;
int test(char *Y) {
return Y - F.X;
}