This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG70e5a2a94354: [clang][Interp] Fix zero-initializing of floating types (authored by tbaeder).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D146788/new/ https://reviews.llvm.org/D146788 Files: clang/lib/AST/Interp/ByteCodeExprGen.cpp clang/test/AST/Interp/floats.cpp Index: clang/test/AST/Interp/floats.cpp =================================================================== --- clang/test/AST/Interp/floats.cpp +++ clang/test/AST/Interp/floats.cpp @@ -78,3 +78,17 @@ } static_assert(f2() == __FLT_MAX__, ""); } + +namespace ZeroInit { + template<typename FloatT> + struct A { + int a; + FloatT f; + }; + + constexpr A<float> a{12}; + static_assert(a.f == 0.0f); + + constexpr A<double> b{12}; + static_assert(a.f == 0.0); +}; Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp =================================================================== --- clang/lib/AST/Interp/ByteCodeExprGen.cpp +++ clang/lib/AST/Interp/ByteCodeExprGen.cpp @@ -953,8 +953,10 @@ return this->emitNullPtr(E); case PT_FnPtr: return this->emitNullFnPtr(E); - case PT_Float: - assert(false); + case PT_Float: { + return this->emitConstFloat( + APFloat::getZero(Ctx.getFloatSemantics(E->getType())), E); + } } llvm_unreachable("unknown primitive type"); }
Index: clang/test/AST/Interp/floats.cpp =================================================================== --- clang/test/AST/Interp/floats.cpp +++ clang/test/AST/Interp/floats.cpp @@ -78,3 +78,17 @@ } static_assert(f2() == __FLT_MAX__, ""); } + +namespace ZeroInit { + template<typename FloatT> + struct A { + int a; + FloatT f; + }; + + constexpr A<float> a{12}; + static_assert(a.f == 0.0f); + + constexpr A<double> b{12}; + static_assert(a.f == 0.0); +}; Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp =================================================================== --- clang/lib/AST/Interp/ByteCodeExprGen.cpp +++ clang/lib/AST/Interp/ByteCodeExprGen.cpp @@ -953,8 +953,10 @@ return this->emitNullPtr(E); case PT_FnPtr: return this->emitNullFnPtr(E); - case PT_Float: - assert(false); + case PT_Float: { + return this->emitConstFloat( + APFloat::getZero(Ctx.getFloatSemantics(E->getType())), E); + } } llvm_unreachable("unknown primitive type"); }
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits