| Index: test/cctest/compiler/test-run-native-calls.cc
|
| diff --git a/test/cctest/compiler/test-run-native-calls.cc b/test/cctest/compiler/test-run-native-calls.cc
|
| index f9ef44b084302c006f57ba7177ef308df97a24c8..8be5db11944fbb9eaa4ddf51fec27d36947489fb 100644
|
| --- a/test/cctest/compiler/test-run-native-calls.cc
|
| +++ b/test/cctest/compiler/test-run-native-calls.cc
|
| @@ -989,10 +989,6 @@ TEST(Float64StackParamsToStackParams) {
|
| void MixedParamTest(int start) {
|
| if (DISABLE_NATIVE_STACK_PARAMS) return;
|
| if (RegisterConfiguration::ArchDefault()->num_double_registers() < 2) return;
|
| -#ifdef V8_TARGET_ARCH_MIPS64
|
| - // TODO(titzer): MIPS stack doubles can be misaligned.
|
| - if (true) return;
|
| -#endif
|
|
|
| // TODO(titzer): mix in 64-bit types on all platforms when supported.
|
| #if V8_TARGET_ARCH_32_BIT
|
| @@ -1046,7 +1042,7 @@ void MixedParamTest(int start) {
|
| Handle<Code> wrapper = Handle<Code>::null();
|
| int32_t expected_ret;
|
| char bytes[kDoubleSize];
|
| - char output[kDoubleSize];
|
| + V8_ALIGNED(8) char output[kDoubleSize];
|
| int expected_size = 0;
|
| CSignature0<int32_t> csig;
|
| {
|
|
|