Line data    Source code 
       1             : // Copyright 2017 the V8 project authors. All rights reserved.
       2             : // Use of this source code is governed by a BSD-style license that can be
       3             : // found in the LICENSE file.
       4             : 
       5             : #include "test/cctest/compiler/value-helper.h"
       6             : 
       7             : namespace v8 {
       8             : namespace internal {
       9             : namespace compiler {
      10             : 
      11             : // Define constexpr arrays of ValueHelper for external references.
      12             : constexpr int8_t ValueHelper::int8_array[];
      13             : constexpr int16_t ValueHelper::int16_array[];
      14             : constexpr uint32_t ValueHelper::uint32_array[];
      15             : constexpr uint64_t ValueHelper::uint64_array[];
      16             : constexpr float ValueHelper::float32_array[];
      17             : constexpr double ValueHelper::float64_array[];
      18             : 
      19             : }  // namespace compiler
      20             : }  // namespace internal
      21       79917 : }  // namespace v8
       |