| Index: src/ia32/interface-descriptors-ia32.cc
|
| diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
|
| index 9426c0de052da7a322804eae37b5fa5cc704794b..9e80cda77d0da3791851c1a3981d044614837fe9 100644
|
| --- a/src/ia32/interface-descriptors-ia32.cc
|
| +++ b/src/ia32/interface-descriptors-ia32.cc
|
| @@ -429,6 +429,15 @@
|
| data->InitializePlatformSpecific(arraysize(registers), registers);
|
| }
|
|
|
| +void AtomicsLoadDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {
|
| + edx, // the typedarray object
|
| + eax // the index to load (untagged)
|
| + };
|
| + data->InitializePlatformSpecific(arraysize(registers), registers);
|
| +}
|
| +
|
| } // namespace internal
|
| } // namespace v8
|
|
|
|
|