Skip to content

Commit

Permalink
simd fix for -m32
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Nov 1, 2012
1 parent 1857b71 commit 92b7298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/cgcod.c
Expand Up @@ -2152,7 +2152,7 @@ if (regcon.cse.mval & 1) elem_print(regcon.cse.value[i]);
sz = tysize[tym];
byte = sz == 1;

if (sz <= REGSIZE) // if data will fit in one register
if (sz <= REGSIZE || tyvector(tym)) // if data will fit in one register
{
/* First see if it is already in a correct register */

Expand Down

0 comments on commit 92b7298

Please sign in to comment.