Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: src/conversions.cc

Issue 973001: Version 2.1.4.1... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/checks.h ('k') | src/diy_fp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/conversions.cc
===================================================================
--- src/conversions.cc (revision 4127)
+++ src/conversions.cc (working copy)
@@ -31,7 +31,6 @@
#include "conversions-inl.h"
#include "factory.h"
-#include "grisu3.h"
#include "scanner.h"
namespace v8 {
@@ -383,17 +382,8 @@
int decimal_point;
int sign;
- char* decimal_rep;
- bool used_dtoa = false;
- char grisu_buffer[kGrisu3MaximalLength + 1];
- int length;
- if (grisu3(v, grisu_buffer, &sign, &length, &decimal_point)) {
- decimal_rep = grisu_buffer;
- } else {
- decimal_rep = dtoa(v, 0, 0, &decimal_point, &sign, NULL);
- used_dtoa = true;
- length = StrLength(decimal_rep);
- }
+ char* decimal_rep = dtoa(v, 0, 0, &decimal_point, &sign, NULL);
+ int length = StrLength(decimal_rep);
if (sign) builder.AddCharacter('-');
@@ -428,7 +418,7 @@
builder.AddFormatted("%d", exponent);
}
- if (used_dtoa) freedtoa(decimal_rep);
+ freedtoa(decimal_rep);
}
}
return builder.Finalize();
« no previous file with comments | « src/checks.h ('k') | src/diy_fp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698