9ed4b96578
GCC 7.x doesn't like it (-Werror=subobject-linkage) when a class either derives from a class or has a member field of a type that was declared in an anonymous namespace. It is also opposed (-Werror=attributes) to visibility attributes being defined at explicit template instantiations. GCC 8.x further has reservations (-Werror=class-memaccess) about letting memset/memcpy modify areas within non-POD objects. Change-Id: Ic5107bb5ee3af6233e3741e3ef78d03a0a84005a Reviewed-on: https://chromium-review.googlesource.com/1208306 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Ben Titzer <titzer@chromium.org> Cr-Commit-Position: refs/heads/master@{#56106}
38 lines
942 B
C++
38 lines
942 B
C++
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "test/unittests/test-utils.h"
|
|
|
|
#include "src/v8.h"
|
|
|
|
#include "src/objects-inl.h"
|
|
#include "src/wasm/function-body-decoder.h"
|
|
#include "src/wasm/wasm-module-builder.h"
|
|
|
|
#include "test/common/wasm/test-signatures.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace wasm {
|
|
|
|
class WasmModuleBuilderTest : public TestWithZone {
|
|
protected:
|
|
void AddLocal(WasmFunctionBuilder* f, ValueType type) {
|
|
uint16_t index = f->AddLocal(type);
|
|
f->EmitGetLocal(index);
|
|
}
|
|
};
|
|
|
|
TEST_F(WasmModuleBuilderTest, Regression_647329) {
|
|
// Test crashed with asan.
|
|
ZoneBuffer buffer(zone());
|
|
const size_t kSize = ZoneBuffer::kInitialSize * 3 + 4096 + 100;
|
|
byte data[kSize] = {0};
|
|
buffer.write(data, kSize);
|
|
}
|
|
|
|
} // namespace wasm
|
|
} // namespace internal
|
|
} // namespace v8
|