[flang-commits] [clang] [flang] [llvm] [AsmWriter] Change the output syntax of floating-point literals. (PR #190649)

Eli Friedman via flang-commits flang-commits at lists.llvm.org
Mon Apr 6 14:17:38 PDT 2026


================
@@ -5780,6 +5787,9 @@ DoubleAPFloat frexp(const DoubleAPFloat &Arg, int &Exp,
                        std::move(Second));
 }
 
+APInt DoubleAPFloat::getNaNPayload() const {
+  return Floats[0].getNaNPayload();
----------------
efriedma-quic wrote:

This is throwing out bits of the second part?  (Not that there's really a good way to handle this... we probably just shouldn't try.)

https://github.com/llvm/llvm-project/pull/190649


More information about the flang-commits mailing list