1 // RUN: %clang_cc1 -fexperimental-new-constant-interpreter %s -verify
2 // RUN: %clang_cc1 -fexperimental-new-constant-interpreter %s -S -emit-llvm -o - | FileCheck %s
3 // RUN: %clang_cc1 -verify=ref %s -Wno-constant-evaluated
4 // RUN: %clang_cc1 -verify=ref %s -Wno-constant-evaluated %s -S -emit-llvm -o - | FileCheck %s
6 // expected-no-diagnostics
9 using size_t = decltype(sizeof(int));
12 inline constexpr bool is_constant_evaluated() noexcept
{
13 return __builtin_is_constant_evaluated();
17 constexpr bool b
= std::is_constant_evaluated();
19 static_assert(std::is_constant_evaluated() , "");
22 bool is_this_constant() {
23 return __builtin_is_constant_evaluated(); // CHECK: ret i1 false
26 constexpr bool assume() {
27 __builtin_assume(true);
28 __builtin_assume(false);
31 static_assert(assume(), "");