15 lines · c
1// RUN: %clang %s -O0 -emit-llvm -S -o - | FileCheck %s2 3void foo(void);4void bar(void);5 6void fold_if(int a, int b) {7 // CHECK: define {{.*}} @fold_if(8 // CHECK-NOT: = phi9 // CHECK: }10 if (a && b)11 foo();12 else13 bar();14}15