From: Chris Lattner Date: Mon, 16 Jun 2003 14:04:18 +0000 (+0000) Subject: Minor tweak to make testcase less simple X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4070248bbc0bcf0ab4a57ae5746c224a6f1fb2d0;p=oota-llvm.git Minor tweak to make testcase less simple git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6710 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }