diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-23 00:38:32 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-23 00:38:32 +0000 |
commit | fcb5d8d43e9e7a73af34e47e06022cba42f169f1 (patch) | |
tree | 2db456c8fbfee316302d9af3e607f7dccc2a0475 /gcc | |
parent | 5ae6b1e2f634e8c2e6b22065c17e7fad41488220 (diff) | |
download | ppe42-gcc-fcb5d8d43e9e7a73af34e47e06022cba42f169f1.tar.gz ppe42-gcc-fcb5d8d43e9e7a73af34e47e06022cba42f169f1.zip |
Finish correcting inadvertent checkin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67107 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 3c371aefc27..d251a27cc01 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5799,7 +5799,7 @@ get_inner_reference (exp, pbitsize, pbitpos, poffset, pmode, made during type construction. */ if (this_offset == 0) break; - else if (CONTAINS_PLACEHOLDER_P (this_offset)) + else if (contains_placeholder_p (this_offset)) this_offset = build (WITH_RECORD_EXPR, sizetype, this_offset, exp); offset = size_binop (PLUS_EXPR, offset, this_offset); @@ -5829,9 +5829,9 @@ get_inner_reference (exp, pbitsize, pbitpos, poffset, pmode, /* If the index has a self-referential type, pass it to a WITH_RECORD_EXPR; if the component size is, pass our component to one. */ - if (CONTAINS_PLACEHOLDER_P (index)) + if (contains_placeholder_p (index)) index = build (WITH_RECORD_EXPR, TREE_TYPE (index), index, exp); - if (CONTAINS_PLACEHOLDER_P (unit_size)) + if (contains_placeholder_p (unit_size)) unit_size = build (WITH_RECORD_EXPR, sizetype, unit_size, array); offset = size_binop (PLUS_EXPR, offset, |