From 174242fbbe86014c84f4619805a15c869b44a96d Mon Sep 17 00:00:00 2001 From: mbrandy Date: Tue, 12 May 2015 09:43:24 -0700 Subject: [PATCH] PPC: Fix '[strong] Disallow implicit conversions for comparison' Fix build break. R=conradw@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1130603004 Cr-Commit-Position: refs/heads/master@{#28374} --- src/ppc/code-stubs-ppc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc index 088c5ee..e4b3119 100644 --- a/src/ppc/code-stubs-ppc.cc +++ b/src/ppc/code-stubs-ppc.cc @@ -594,7 +594,7 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) { // Handle the case where the objects are identical. Either returns the answer // or goes to slow. Only falls through if the objects were not identical. - EmitIdenticalObjectComparison(masm, &slow, cc); + EmitIdenticalObjectComparison(masm, &slow, cc, strong()); // If either is a Smi (we know that not both are), then they can only // be strictly equal if the other is a HeapNumber. -- 2.7.4