comparison gcc/fixed-value.h @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children 04ced10e8804
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
1 /* Fixed-point arithmetic support. 1 /* Fixed-point arithmetic support.
2 Copyright (C) 2006, 2007 Free Software Foundation, Inc. 2 Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
22 22
23 #include "machmode.h" 23 #include "machmode.h"
24 #include "real.h" 24 #include "real.h"
25 #include "double-int.h" 25 #include "double-int.h"
26 26
27 struct fixed_value GTY(()) 27 struct GTY(()) fixed_value
28 { 28 {
29 double_int data; /* Store data up to 2 wide integers. */ 29 double_int data; /* Store data up to 2 wide integers. */
30 unsigned int mode; /* Use machine mode to know IBIT and FBIT. */ 30 enum machine_mode mode; /* Use machine mode to know IBIT and FBIT. */
31 }; 31 };
32 32
33 #define FIXED_VALUE_TYPE struct fixed_value 33 #define FIXED_VALUE_TYPE struct fixed_value
34 34
35 #define MAX_FCONST0 18 /* For storing 18 fixed-point zeros per 35 #define MAX_FCONST0 18 /* For storing 18 fixed-point zeros per