S390: Fix '[ic] Use the CallFunction builtin to invoke accessors.'

Fix native compilation error due to gcc error "call of overloaded
‘Operand(int)’ is ambiguous"

R=joransiu@ca.ibm.com, mbrandy@us.ibm.com, michael_dawson@ca.ibm.com
BUG=

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

Cr-Commit-Position: refs/heads/master@{#35218}
This commit is contained in:
jyan 2016-04-01 15:34:03 -07:00 committed by Commit bot
parent 6c38fde94e
commit 9fbc04f833

View File

@ -43,7 +43,7 @@ void NamedLoadHandlerCompiler::GenerateLoadViaGetter(
}
__ Push(receiver);
__ LoadAccessor(r3, holder, accessor_index, ACCESSOR_GETTER);
__ LoadImmP(r2, Operand(0));
__ LoadImmP(r2, Operand::Zero());
__ Call(masm->isolate()->builtins()->CallFunction(
ConvertReceiverMode::kNotNullOrUndefined),
RelocInfo::CODE_TARGET);