Reviewers: Benedikt Meurer,
Description:
Remove unneccessary assert
this assert fails when dumping native counters on x64
BUG=
Please review this at https://codereview.chromium.org/151033003/
SVN Base: git://github.com/v8/v8.git@master
Affected files (+0, -1 lines):
M src/x64/lithium-codegen-x64.cc
Index: src/x64/lithium-codegen-x64.cc
diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
index
27f164426a2b911d50a2c14d5b6050e173058b7b..57e0ea011e329fbb3f258f8e3db0709bf05e6183
100644
--- a/src/x64/lithium-codegen-x64.cc
+++ b/src/x64/lithium-codegen-x64.cc
@@ -3855,7 +3855,6 @@ void LCodeGen::DoStoreNamedField(LStoreNamedField*
instr) {
Register value = ToRegister(instr->value());
if (instr->object()->IsConstantOperand()) {
ASSERT(value.is(rax));
- ASSERT(!access.representation().IsSpecialization());
LConstantOperand* object = LConstantOperand::cast(instr->object());
__ store_rax(ToExternalReference(object));
} else {
--
--
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.