projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da92993
)
Minor tweak to make testcase less simple
author
Chris Lattner
<sabre@nondot.org>
Mon, 16 Jun 2003 14:04:18 +0000
(14:04 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/test/C++Frontend/2003-06-16-InvalidInitializer.c
b/test/C++Frontend/2003-06-16-InvalidInitializer.c
index b9b4172dce688ed5566fa874f6b7b8573c9ebf03..d6bfc53a4aecb5fcd08db5954d58c5c89224f558 100644
(file)
--- 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; }