From fef854565eafa83ee42b729d0af603b894b2ae3c Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 5 May 1996 12:47:58 -0400 Subject: [PATCH] (build_real_from_int_cst): Remove spurious test for REAL_IS_NOT_DOUBLE. From-SVN: r11924 --- gcc/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree.c b/gcc/tree.c index 74d4fc0a743..d7c0e05f00b 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -1401,7 +1401,7 @@ build_real_from_int_cst (type, i) set_float_handler (float_error); -#if !defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC) +#ifdef REAL_ARITHMETIC d = real_value_from_int_cst (type, i); #else d = REAL_VALUE_TRUNCATE (TYPE_MODE (type), -- 2.30.2