OSDN Git Service

2009-07-31 Andrew Haley <aph@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / fixed-value.h
index 69db190..ca0ee93 100644 (file)
@@ -1,5 +1,5 @@
 /* Fixed-point arithmetic support.
-   Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -24,10 +24,10 @@ along with GCC; see the file COPYING3.  If not see
 #include "real.h"
 #include "double-int.h"
 
-struct fixed_value GTY(())
+struct GTY(()) fixed_value
 {
-  double_int data;     /* Store data up to 2 wide integers.  */
-  unsigned int mode;   /* Use machine mode to know IBIT and FBIT.  */
+  double_int data;             /* Store data up to 2 wide integers.  */
+  enum machine_mode mode;      /* Use machine mode to know IBIT and FBIT.  */
 };
 
 #define FIXED_VALUE_TYPE struct fixed_value