Commit 689995a7 authored by Russ Cox's avatar Russ Cox

cmd/gc: remove ignored debugging arguments in Fconv print

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/123880043
parent aac7f1a0
...@@ -591,7 +591,7 @@ Fconv(Fmt *fp) ...@@ -591,7 +591,7 @@ Fconv(Fmt *fp)
d = mpgetflt(fvp); d = mpgetflt(fvp);
if(d >= 0 && (fp->flags & FmtSign)) if(d >= 0 && (fp->flags & FmtSign))
fmtprint(fp, "+"); fmtprint(fp, "+");
return fmtprint(fp, "%g", d, exp, fvp); return fmtprint(fp, "%g", d);
} }
// very out of range. compute decimal approximation by hand. // very out of range. compute decimal approximation by hand.
......
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