Skip to content

Commit

Permalink
Merge pull request #4775 from WalterBright/fix14430
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies authored and WalterBright committed Jun 26, 2015
1 parent a9902c6 commit aca7244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/cod1.c
Original file line number Diff line number Diff line change
Expand Up @@ -4249,8 +4249,8 @@ code *loaddata(elem *e,regm_t *pretregs)
}
else if (I64 && sz == 16)
{
ce = movregconst(CNIL,findreglsw(forregs),e->EV.Vcent.lsw,0);
ce = movregconst(ce,findregmsw(forregs),e->EV.Vcent.msw,0);
ce = movregconst(CNIL,findreglsw(forregs),e->EV.Vcent.lsw,64);
ce = movregconst(ce,findregmsw(forregs),e->EV.Vcent.msw,64);
}
else
assert(0);
Expand Down

0 comments on commit aca7244

Please sign in to comment.