diff options
Diffstat (limited to 'math')
-rwxr-xr-x | math/gen-libm-test.pl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/math/gen-libm-test.pl b/math/gen-libm-test.pl index c50e27d44a..e1a32e53c4 100755 --- a/math/gen-libm-test.pl +++ b/math/gen-libm-test.pl @@ -198,20 +198,17 @@ sub parse_args { die ("$descr[$i] is unknown"); } $call .= ')'; - $str = "$call == "; + $str = $call; # Result @descr = split //,$descr_res; foreach (@descr) { if ($_ =~ /f|i|l|L/) { - $str .= &beautify ($args[$current_arg]); ++$current_arg; } elsif ($_ eq 'c') { - $str .= &build_complex_beautify ($args[$current_arg], $args[$current_arg+1]); $current_arg += 2; } elsif ($_ eq 'b') { # boolean - $str .= ($args[$current_arg] == 0) ? "false" : "true"; ++$current_arg; } elsif ($_ eq '1') { ++$current_arg; |