Revision: 19447
Author: [email protected]
Date: Tue Feb 18 13:51:24 2014 UTC
Log: A64: Fix compiler warning in r19444.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/167463004
http://code.google.com/p/v8/source/detail?r=19447
Modified:
/branches/bleeding_edge/src/a64/macro-assembler-a64.cc
=======================================
--- /branches/bleeding_edge/src/a64/macro-assembler-a64.cc Tue Feb 18
13:15:32 2014 UTC
+++ /branches/bleeding_edge/src/a64/macro-assembler-a64.cc Tue Feb 18
13:51:24 2014 UTC
@@ -598,7 +598,8 @@
branch->SetImmPCOffsetTarget(veneer);
b(label);
#ifdef DEBUG
- ASSERT(SizeOfCodeGeneratedSince(&size_check) <=
kMaxVeneerCodeSize);
+ ASSERT(SizeOfCodeGeneratedSince(&size_check) <=
+ static_cast<uint64_t>(kMaxVeneerCodeSize));
size_check.Unuse();
#endif
--
--
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.