diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-30 22:59:45 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-30 22:59:45 +0000 |
commit | 0c87e873a8d086f7b8cbbec54e8ed4c340f1d1b8 (patch) | |
tree | 635332dd9d40fc4faefab68c694fc4264f95698b /gcc/real.c | |
parent | 8c5abaa8a3c110f1cf4235f9f1bc7203aa55ec50 (diff) | |
download | gcc-0c87e873a8d086f7b8cbbec54e8ed4c340f1d1b8.tar.gz |
* real.c (encode_ieee_extended): Back out previous patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73105 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/real.c b/gcc/real.c index 08010546115..87246807f2f 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -3032,11 +3032,6 @@ encode_ieee_extended (const struct real_format *fmt, long *buf, buf[0] = image_hi << 16, buf[1] = sig_hi, buf[2] = sig_lo; else buf[0] = sig_lo, buf[1] = sig_hi, buf[2] = image_hi; - - /* Avoid uninitialized data to be output by compiler when XFmode is extended - to 128 bits. */ - if (GET_MODE_SIZE (XFmode) == 16) - buf[3] = 0; } static void |