diff options
author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-25 03:58:15 +0000 |
---|---|---|
committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-25 03:58:15 +0000 |
commit | eec9c06d24dabd621190ce6659da7c73512af1e3 (patch) | |
tree | 10de1a929aea6ab2bd2733ac21e937d4ec186730 /gcc/config/pa | |
parent | 8a803f3e1c68580727f3705fd37ed0e671a9a0f8 (diff) | |
download | gcc-eec9c06d24dabd621190ce6659da7c73512af1e3.tar.gz |
Delete get_inner_array_type. Use strip_array_types instead.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135858 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/pa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 10c50ffcf12..009f5faf10c 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -1712,8 +1712,7 @@ emit_move_sequence (rtx *operands, enum machine_mode mode, rtx scratch_reg) decl = TREE_OPERAND (decl, 1); type = TREE_TYPE (decl); - if (TREE_CODE (type) == ARRAY_TYPE) - type = get_inner_array_type (type); + type = strip_array_types (type); if (POINTER_TYPE_P (type)) { |