| Index: src/full-codegen/ppc/full-codegen-ppc.cc
|
| diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| index 8d33ff8e158afbb424166e48d5425ffeba6a5338..f46bb552b21f33c5bc6708beb58c03c5ea79c2a0 100644
|
| --- a/src/full-codegen/ppc/full-codegen-ppc.cc
|
| +++ b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| @@ -1392,7 +1392,8 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
| case ObjectLiteral::Property::COMPUTED:
|
| // It is safe to use [[Put]] here because the boilerplate already
|
| // contains computed properties with an uninitialized value.
|
| - if (key->IsPropertyName()) {
|
| + if (key->IsStringLiteral()) {
|
| + DCHECK(key->IsPropertyName());
|
| if (property->emit_store()) {
|
| VisitForAccumulatorValue(value);
|
| DCHECK(StoreDescriptor::ValueRegister().is(r3));
|
|
|