view gcc/testsuite/g++.dg/lto/pr87295_0.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// { dg-lto-do assemble }
// { dg-lto-options { { -flto -ffat-lto-objects -fdebug-types-section -g -std=gnu++17 } } }

template<typename _Tp, _Tp __v>
struct integral_constant
{
  static constexpr _Tp value = __v;
  typedef _Tp value_type;
  constexpr operator value_type() const noexcept { return value; }
};

typedef integral_constant<bool, false> false_type;

template<typename...>
struct __or_;

template<>
struct __or_<>
  : public false_type
{ };