summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/cxx1z-constexpr-if.cpp
blob: 80a397f51e9a97753c024207a8f1256029e5c933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -std=c++1z %s -emit-llvm -o - | FileCheck %s --implicit-check-not=should_not_be_used

void should_be_used_1();
void should_be_used_2();
void should_not_be_used();
void f() {
  if constexpr (false)
    should_not_be_used();
  else
    should_be_used_1();

  if constexpr (true || ({ label: false; }))
    should_be_used_2();
  else {
    goto foo;
foo: should_not_be_used();
  }
}

// CHECK: should_be_used_1
// CHECK: should_be_used_2
OpenPOWER on IntegriCloud