1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:20:22 -07:00

s/AJMP/AB/ to fix build breakage.

R=rsc
https://golang.org/cl/155069
This commit is contained in:
Kai Backman 2009-11-16 11:58:28 -08:00
parent 4085364a20
commit c3cf8d663a

View File

@ -898,11 +898,11 @@ bgen(Node *n, int true, Prog *to)
if(!true) {
if(isfloat[nl->type->etype]) {
// brcom is not valid on floats when NaN is involved.
p1 = gbranch(AJMP, T);
p2 = gbranch(AJMP, T);
p1 = gbranch(AB, T);
p2 = gbranch(AB, T);
patch(p1, pc);
bgen(n, 1, p2);
patch(gbranch(AJMP, T), to);
patch(gbranch(AB, T), to);
patch(p2, pc);
goto ret;
}