Commit c3cf8d66 authored by Kai Backman's avatar Kai Backman

s/AJMP/AB/ to fix build breakage.

R=rsc
https://golang.org/cl/155069
parent 4085364a
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment