Commit 3cd96949 authored by jacob.bramley@arm.com's avatar jacob.bramley@arm.com

A64: Fix compiler warning in r19444.

BUG=
R=jochen@chromium.org

Review URL: https://codereview.chromium.org/167463004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@19447 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 6af4512b
...@@ -598,7 +598,8 @@ void MacroAssembler::EmitVeneers(bool need_protection) { ...@@ -598,7 +598,8 @@ void MacroAssembler::EmitVeneers(bool need_protection) {
branch->SetImmPCOffsetTarget(veneer); branch->SetImmPCOffsetTarget(veneer);
b(label); b(label);
#ifdef DEBUG #ifdef DEBUG
ASSERT(SizeOfCodeGeneratedSince(&size_check) <= kMaxVeneerCodeSize); ASSERT(SizeOfCodeGeneratedSince(&size_check) <=
static_cast<uint64_t>(kMaxVeneerCodeSize));
size_check.Unuse(); size_check.Unuse();
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment