Skip to content

Commit

Permalink
again with getting testexpression to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Sep 27, 2012
1 parent 3d92090 commit 469c81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/cgelem.c
Expand Up @@ -4469,7 +4469,7 @@ STATIC elem * optelem(elem *e,HINT goal)
ex->E1 = optelem(ex->E1, leftgoal);
else if (e1->Eoper == OPu64_d)
e1->E1 = optelem(e1->E1, leftgoal);
else if (e1->Eoper == OPd_ld && e1->E1->Eoper == OPu64_d)
else if ((e1->Eoper == OPd_ld || e1->Eoper == OPd_f) && e1->E1->Eoper == OPu64_d)
e1->E1->E1 = optelem(e1->E1->E1, leftgoal);
else
e1 = e->E1 = optelem(e1,leftgoal);
Expand Down

0 comments on commit 469c81e

Please sign in to comment.