1 /* PR middle-end/107262 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -ffast-math" } */
4 /* { dg-add-options bfloat16 } */
5 /* { dg-require-effective-target bfloat16_runtime } */
6
7 __bf16
8 foo (__bf16 a)
9 {
10 __bf16 b = 0;
11 b /= a;
12 return b;
13 }