From 4070248bbc0bcf0ab4a57ae5746c224a6f1fb2d0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 16 Jun 2003 14:04:18 +0000 Subject: [PATCH] Minor tweak to make testcase less simple git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6710 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/C++Frontend/2003-06-16-InvalidInitializer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/C++Frontend/2003-06-16-InvalidInitializer.c b/test/C++Frontend/2003-06-16-InvalidInitializer.c index b9b4172dce6..d6bfc53a4ae 100644 --- a/test/C++Frontend/2003-06-16-InvalidInitializer.c +++ b/test/C++Frontend/2003-06-16-InvalidInitializer.c @@ -1,7 +1,8 @@ typedef struct { char *auth_pwfile; + int x; } auth_config_rec; -void *Ptr = &((auth_config_rec*)0)->auth_pwfile; +void *Ptr = &((auth_config_rec*)0)->x; int main() { return 0; }