comparison gcc/sreal.c @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children 04ced10e8804
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* Simple data type for positive real numbers for the GNU compiler. 1 /* Simple data type for positive real numbers for the GNU compiler.
2 Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc. 2 Copyright (C) 2002, 2003, 2004, 2007, 2010 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
50 */ 50 */
51 51
52 #include "config.h" 52 #include "config.h"
53 #include "system.h" 53 #include "system.h"
54 #include "coretypes.h" 54 #include "coretypes.h"
55 #include "tm.h"
56 #include "sreal.h" 55 #include "sreal.h"
57 56
58 static inline void copy (sreal *, sreal *); 57 static inline void copy (sreal *, sreal *);
59 static inline void shift_right (sreal *, int); 58 static inline void shift_right (sreal *, int);
60 static void normalize (sreal *); 59 static void normalize (sreal *);