mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-30 23:35:00 +08:00
cp-array-notation.c (expand_sec_reduce_builtin): Use INDIRECT_REF_P.
* cp-array-notation.c (expand_sec_reduce_builtin): Use INDIRECT_REF_P. * cp-ubsan.c (cp_ubsan_check_member_access_r): Likewise. From-SVN: r224999
This commit is contained in:
parent
87ab2b04ae
commit
311bd4d897
@ -1,3 +1,8 @@
|
||||
2015-06-26 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
* cp-array-notation.c (expand_sec_reduce_builtin): Use INDIRECT_REF_P.
|
||||
* cp-ubsan.c (cp_ubsan_check_member_access_r): Likewise.
|
||||
|
||||
2015-06-25 Andrew MacLeod <amacleod@redhat.com>
|
||||
|
||||
* call.c: Remove ipa-ref.h and plugin-api.h from include list.
|
||||
|
@ -345,7 +345,7 @@ expand_sec_reduce_builtin (tree an_builtin_fn, tree *new_var)
|
||||
array_ind_value = get_temp_regvar (TREE_TYPE (func_parm), func_parm);
|
||||
|
||||
array_op0 = (*array_operand)[0];
|
||||
if (TREE_CODE (array_op0) == INDIRECT_REF)
|
||||
if (INDIRECT_REF_P (array_op0))
|
||||
array_op0 = TREE_OPERAND (array_op0, 0);
|
||||
switch (an_type)
|
||||
{
|
||||
|
@ -200,7 +200,7 @@ cp_ubsan_check_member_access_r (tree *stmt_p, int *walk_subtrees, void *data)
|
||||
{
|
||||
case ADDR_EXPR:
|
||||
t = TREE_OPERAND (stmt, 0);
|
||||
while ((TREE_CODE (t) == MEM_REF || TREE_CODE (t) == INDIRECT_REF)
|
||||
while ((TREE_CODE (t) == MEM_REF || INDIRECT_REF_P (t))
|
||||
&& TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR)
|
||||
t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
|
||||
if (handled_component_p (t))
|
||||
|
Loading…
Reference in New Issue
Block a user