You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
274 B

// 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;
}