allwinner_a64/android/external/clang/test/CodeGen/ubsan-conditional.c
2018-08-08 16:14:42 +08:00

10 lines
274 B
C

// RUN: %clang_cc1 %s -emit-llvm -fsanitize=float-divide-by-zero -o - | FileCheck %s
_Bool b;
// CHECK: @f(
double f() {
// CHECK: %[[B:.*]] = load {{.*}} @b
// CHECK: %[[COND:.*]] = trunc {{.*}} %[[B]] to i1
// CHECK: br i1 %[[COND]]
return b ? 0.0 / 0.0 : 0.0;
}