Minor tweak to make testcase less simple
authorChris Lattner <sabre@nondot.org>
Mon, 16 Jun 2003 14:04:18 +0000 (14:04 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 16 Jun 2003 14:04:18 +0000 (14:04 +0000)
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

index b9b4172dce688ed5566fa874f6b7b8573c9ebf03..d6bfc53a4aecb5fcd08db5954d58c5c89224f558 100644 (file)
@@ -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; }