Revision: 13813
Author:   [email protected]
Date:     Mon Mar  4 07:25:33 2013
Log:      Fix one more cast warning on Win32

[email protected]
BUG=

Review URL: https://codereview.chromium.org/12398009
http://code.google.com/p/v8/source/detail?r=13813

Modified:
 /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc

=======================================
--- /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc Mon Mar 4 07:00:57 2013 +++ /branches/bleeding_edge/src/ia32/macro-assembler-ia32.cc Mon Mar 4 07:25:33 2013
@@ -648,7 +648,7 @@
                                            Register instance_type) {
   mov(map, FieldOperand(heap_object, HeapObject::kMapOffset));
   movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
-  cmpb(instance_type, static_cast<int8_t>(LAST_NAME_TYPE));
+  cmpb(instance_type, static_cast<uint8_t>(LAST_NAME_TYPE));
   return below_equal;
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to