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

Unified Diff: src/type-info.cc

Issue 6366028: X64 Crankshaft: Add TypeRecordingBinaryStub to X64 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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
Index: src/type-info.cc
===================================================================
--- src/type-info.cc (revision 6575)
+++ src/type-info.cc (working copy)
@@ -46,9 +46,14 @@
if (value->IsSmi()) {
info = TypeInfo::Smi();
} else if (value->IsHeapNumber()) {
- info = TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
- ? TypeInfo::Integer32()
- : TypeInfo::Double();
+ double double_value = HeapNumber::cast(*value)->value();
+ if (TypeInfo::IsSmiDouble(double_value)) {
+ info = TypeInfo::Smi();
+ } else if (TypeInfo::IsInt32Double(double_value)) {
+ info = TypeInfo::Integer32();
+ } else {
+ info = TypeInfo::Double();
+ }
} else if (value->IsString()) {
info = TypeInfo::String();
} else {
« no previous file with comments | « src/type-info.h ('k') | src/x64/code-stubs-x64.h » ('j') | src/x64/code-stubs-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698