comparison gcc/testsuite/g++.dg/cpp2a/attr-likely6.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // PR c++/92343
2 // { dg-do compile { target c++14 } }
3
4 constexpr bool
5 foo (bool x)
6 {
7 if (x)
8 [[unlikely]] return true;
9 else
10 [[likely]] return false;
11 }
12
13 static_assert (foo (true), "");
14 static_assert (!foo (false), "");