From 272dfd2d0bd05ca32a12a3d30ea2871030e5d784 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Thu, 28 Nov 2019 09:17:57 +0100 Subject: [PATCH] WIP Unconditionally enable decimal float types in 'gcc/tree.c:build_common_tree_nodes' --- gcc/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree.c b/gcc/tree.c index 5ae250ee595..d61496518fa 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -10334,7 +10334,7 @@ build_common_tree_nodes (bool signed_char) uint64_type_node = make_or_reuse_type (64, 1); /* Decimal float types. */ - if (targetm.decimal_float_supported_p ()) + if (1 || targetm.decimal_float_supported_p ()) { dfloat32_type_node = make_node (REAL_TYPE); TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE; -- 2.17.1