Commit e980c7e4 authored by chunyang.dai's avatar chunyang.dai Committed by Commit bot

update test case for "Disable neutering on embedded arraybuffers"

  This test case ( added by git: 4c7effe5 ).
  should has different implementation for Turbofan and crankshaft.

BUG=

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

Cr-Commit-Position: refs/heads/master@{#25713}
parent 1954ad8b
......@@ -24544,8 +24544,11 @@ TEST(TurboAsmDisablesNeuter) {
v8::V8::Initialize();
v8::HandleScope scope(CcTest::isolate());
LocalContext context;
#if V8_TURBOFAN_TARGET
bool should_be_neuterable = !i::FLAG_turbo_asm;
#else
bool should_be_neuterable = true;
#endif
const char* load =
"function Module(stdlib, foreign, heap) {"
" 'use asm';"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment