[wasm-gc][test] Make tuple array gcc compatible

Bug: v8:11390
Change-Id: Ief0463e81744279edd7fd045e2ff0a636bd5cbba
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2684365
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#72650}
This commit is contained in:
Manos Koukoutos 2021-02-09 15:40:36 +00:00 committed by Commit Bot
parent be2705c889
commit 4d85620ffa

View File

@ -4255,15 +4255,15 @@ TEST_F(FunctionBodyDecoderTest, RefTestCast) {
// Passing/failing tests due to static subtyping. // Passing/failing tests due to static subtyping.
std::tuple<HeapType::Representation, HeapType::Representation, bool> tests[] = std::tuple<HeapType::Representation, HeapType::Representation, bool> tests[] =
{{HeapType::kData, array_heap, true}, {std::make_tuple(HeapType::kData, array_heap, true),
{HeapType::kData, super_struct_heap, true}, std::make_tuple(HeapType::kData, super_struct_heap, true),
{HeapType::kFunc, func_heap_1, true}, std::make_tuple(HeapType::kFunc, func_heap_1, true),
{func_heap_1, func_heap_1, true}, std::make_tuple(func_heap_1, func_heap_1, true),
{func_heap_1, func_heap_2, false}, std::make_tuple(func_heap_1, func_heap_2, false),
{super_struct_heap, sub_struct_heap, true}, std::make_tuple(super_struct_heap, sub_struct_heap, true),
{sub_struct_heap, super_struct_heap, false}, std::make_tuple(sub_struct_heap, super_struct_heap, false),
{sub_struct_heap, array_heap, false}, std::make_tuple(sub_struct_heap, array_heap, false),
{HeapType::kFunc, array_heap, false}}; std::make_tuple(HeapType::kFunc, array_heap, false)};
for (auto test : tests) { for (auto test : tests) {
HeapType from_heap = HeapType(std::get<0>(test)); HeapType from_heap = HeapType(std::get<0>(test));