brintos

brintos / llvm-project-archived public Read only

0
0
Text · 856 B · 8417dca Raw
29 lines · c
1// -*- C++ -*-2//===----------------------------------------------------------------------===//3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9 10#ifndef SUPPORT_TEST_WORKAROUNDS_H11#define SUPPORT_TEST_WORKAROUNDS_H12 13#include "test_macros.h"14 15#if defined(TEST_COMPILER_EDG)16# define TEST_WORKAROUND_EDG_EXPLICIT_CONSTEXPR // VSO-42428017#endif18 19#ifdef TEST_COMPILER_MSVC20# if _MSC_VER < 192721#  define TEST_WORKAROUND_MSVC_BROKEN_IS_TRIVIALLY_COPYABLE // VSO-11774322# endif23# ifndef _MSC_EXTENSIONS24#  define TEST_WORKAROUND_MSVC_BROKEN_ZA_CTOR_CHECK // VSO-11999825# endif26#endif27 28#endif // SUPPORT_TEST_WORKAROUNDS_H29