Skip to content

Commit

Permalink
fix my broken fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Sep 27, 2012
1 parent 2653770 commit 3d92090
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/backend/cgelem.c
Expand Up @@ -4469,6 +4469,8 @@ 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)
e1->E1->E1 = optelem(e1->E1->E1, leftgoal);
else
e1 = e->E1 = optelem(e1,leftgoal);
}
Expand Down

0 comments on commit 3d92090

Please sign in to comment.