OSDN Git Service

* real.h (struct real_format): New member has_sign_dependent_rounding.
[pf3gnuchains/gcc-fork.git] / gcc / config / spu / mfc_tag_table.c
1 /* Copyright (C) 2007 Free Software Foundation, Inc.
2
3 This file is part of GCC.
4
5 GCC is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 2, or (at your option) any later
8 version.
9
10 In addition to the permissions in the GNU General Public License, the
11 Free Software Foundation gives you unlimited permission to link the
12 compiled version of this file into combinations with other programs,
13 and to distribute those combinations without any restriction coming
14 from the use of this file.  (The General Public License restrictions
15 do apply in other respects; for example, they cover modification of
16 the file, and distribution when not linked into a combine
17 executable.)
18
19 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
20 WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with GCC; see the file COPYING.  If not, write to the Free
26 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
27 02110-1301, USA.  */
28
29
30 /* The free tag table used by the MFC tag manager, with tag0
31    reserved for the overlay manager.  */
32 __vector unsigned int
33 __mfc_tag_table = (__vector unsigned int) { 0x7FFFFFFF, -1, -1, -1 };
34
35 /* Arrange to release tag0 if overlays are not present.  */
36 static void __mfc_tag_init (void) __attribute__ ((constructor));
37
38 static void
39 __mfc_tag_init (void)
40 {
41   extern void _ovly_table __attribute__ ((weak));
42
43   if (&_ovly_table == 0)
44     __mfc_tag_table = (__vector unsigned int) { -1, -1, -1, -1 };
45 }