From 1e92bbb90760c6d3a55d9685228cf2e99dd40e8f Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Mon, 22 Mar 2004 00:40:44 +0000 Subject: real.h (struct real_value): Use the same type for all bitfields. * real.h (struct real_value): Use the same type for all bitfields. Rename exp to uexp. (REAL_EXP, SET_REAL_EXP): New accessor macros for uexp. Adjust all uses of exp... * builtins.c: ... here, ... * emit-rtl.c: ... here, and ... * real.c: ... and here. From-SVN: r79802 --- gcc/emit-rtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/emit-rtl.c') diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 8d8ead16f09..cb6f4cb639c 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -5313,7 +5313,7 @@ init_emit_once (int line_numbers) REAL_VALUE_FROM_INT (dconstm2, -2, -1, double_mode); dconsthalf = dconst1; - dconsthalf.exp--; + SET_REAL_EXP (&dconsthalf, REAL_EXP (&dconsthalf) - 1); real_arithmetic (&dconstthird, RDIV_EXPR, &dconst1, &dconst3); -- cgit v1.2.1