Closed
Description
float src(bool b) { return sqrt(b ? 4.0 : 1.0); }
float tgt(bool b) { return b ? sqrt(4.0) : sqrt(1.0); }
https://godbolt.org/z/xnvc5q7nx
https://alive2.llvm.org/ce/z/9tiFV4
float src(bool b) { return sqrt(b ? 4.0 : 1.0); }
float tgt(bool b) { return b ? sqrt(4.0) : sqrt(1.0); }
https://godbolt.org/z/xnvc5q7nx
https://alive2.llvm.org/ce/z/9tiFV4