This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: exception error using SSE extensions with gcc3.1/cygwin
- From: Richard Henderson <rth at redhat dot com>
- To: Andreas Jaeger <aj at suse dot de>
- Cc: Dylan Cuthbert <dylan at q-games dot com>, Jan Hubicka <jh at suse dot cz>, gcc at gcc dot gnu dot org
- Date: Sun, 31 Mar 2002 02:15:38 -0800
- Subject: Re: exception error using SSE extensions with gcc3.1/cygwin
- References: <00bd01c1d580$5e7942e0$2801a8c0@dcuthbert2k> <20020327134948.GC3576@atrey.karlin.mff.cuni.cz> <00da01c1d713$7d9a01c0$2801a8c0@dcuthbert2k> <20020329161322.GE2886@atrey.karlin.mff.cuni.cz> <000f01c1d87c$b756fc00$2801a8c0@dcuthbert2k> <u84rixt8bw.fsf@gromit.moeb>
On Sun, Mar 31, 2002 at 11:06:27AM +0200, Andreas Jaeger wrote:
> 0x8048847 <_Z4Testv+267>: movaps %xmm0,0x4(%esp,1)
> (gdb) p $esp
> $1 = (void *) 0xbffff360
>
> Not sure what goes wrong here,
Alignment trap. esp+4 % 16 == 4.
r~