This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/11215] ICE on vector operation involving local initialized variable
- From: "sethml at ofb dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 17 Jun 2003 02:18:44 -0000
- Subject: [Bug c/11215] ICE on vector operation involving local initialized variable
- References: <20030617020144.11215.sethml@ofb.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11215
------- Additional Comments From sethml@ofb.net 2003-06-17 02:18 -------
Subject: Re: ICE on vector operation involving local initialized variable
> Can you provide the preprocessed sources for temp.c?
Um, the preprocessed sources are exactly the same as the
unpreprocessed sources:
# 1 "test.c"
# 1 "<built-in>"
# 1 "<command line>"
# 1 "test.c"
typedef int v8qi __attribute__ ((mode(V8QI)));
v8qi test() {
v8qi v = (v8qi)0x0101010101010101ll;
return __builtin_ia32_paddb(v, v);
}
> Can you check to see if this is a dup of 7277, which it looks like
> it is?
It does look very similar. Is it the same? Hard to say...
There's definitely something very broken with constant
folding/emitting and vector stuff.
Seth