Commit fd7d8035 authored by Kai Backman's avatar Kai Backman

fix argument order bug for float

R=rsc
http://go/go-review/1025006
parent de663b2d
......@@ -436,8 +436,7 @@ flt2: // binary
} else {
cgen(nr, &f0);
regalloc(&f1, n->type, N);
gmove(&f0, &f1);
cgen(nl, &f0);
cgen(nl, &f1);
gins(optoas(n->op, n->type), &f0, &f1);
}
gmove(&f1, res);
......
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