I got hang ```shell clang++ -fopenmp -fopenmp-targets=nvptx64 -Xopenmp-target=nvptx64 -march=sm_80 -O3 complex.cpp && ./a.out ``` [code](https://github.com/ye-luo/openmp-target/blob/master/tests/complex/complex.cpp) if I add `-ffast-math`, this reproducer passes ```shell clang++ -fopenmp -fopenmp-targets=nvptx64 -Xopenmp-target=nvptx64 -march=sm_80 -O3 -ffast-math complex.cpp && ./a.out ``` issue starts at the same time as https://github.com/llvm/llvm-project/issues/56753