diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-09-03 11:53:44 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2010-09-03 11:53:44 +0200 |
commit | 2f757e4a8b6357445614fe51c4ff394fb13be173 (patch) | |
tree | a4da846c68593e76a88ab9549ba1842370e3656d /gcc/dwarf2out.c | |
parent | 4d948885d0d10918e53b9d91fde81c4f47d837a8 (diff) | |
download | gcc-2f757e4a8b6357445614fe51c4ff394fb13be173.zip gcc-2f757e4a8b6357445614fe51c4ff394fb13be173.tar.gz gcc-2f757e4a8b6357445614fe51c4ff394fb13be173.tar.bz2 |
re PR debug/45500 (ICE: in rtl_for_decl_init, at dwarf2out.c:16307 with -g -msse and using v16qi)
PR debug/45500
* dwarf2out.c (rtl_for_decl_init): Give up for all generic vectors,
not just generic vectors with BLKmode.
* gcc.target/i386/pr45500.c: New test.
From-SVN: r163803
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 4a43d47..7c4c523 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -16256,7 +16256,8 @@ rtl_for_decl_init (tree init, tree type) ; /* Vectors only work if their mode is supported by the target. FIXME: generic vectors ought to work too. */ - else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_MODE (type) == BLKmode) + else if (TREE_CODE (type) == VECTOR_TYPE + && !VECTOR_MODE_P (TYPE_MODE (type))) ; /* If the initializer is something that we know will expand into an immediate RTL constant, expand it now. We must be careful not to |