aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/util/MissingResourceException.java
diff options
context:
space:
mode:
authorIra Rosen <irar@il.ibm.com>2008-05-12 11:03:11 +0000
committerIra Rosen <irar@gcc.gnu.org>2008-05-12 11:03:11 +0000
commitba7267c2653651f979083c6f2d4c8115735e8a23 (patch)
tree6b977f8c64c7a091844f88cf30ef25c386316d0b /libjava/classpath/java/util/MissingResourceException.java
parent2028b66d86a328f2e15bf5bd2077b5cdb9bb8f93 (diff)
downloadgcc-ba7267c2653651f979083c6f2d4c8115735e8a23.zip
gcc-ba7267c2653651f979083c6f2d4c8115735e8a23.tar.gz
gcc-ba7267c2653651f979083c6f2d4c8115735e8a23.tar.bz2
pr36119.f: Rename to ...
* gfortran.dg/vect/pr36119.f: Rename to ... * gfortran.dg/vect/O3-pr36119.f90: ... this. Compile for all targets with -O3. From-SVN: r135209
Diffstat (limited to 'libjava/classpath/java/util/MissingResourceException.java')
0 files changed, 0 insertions, 0 deletions
at64 Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/soft-fp/fixsfsi.c
blob: 6417bd436ba86494b15d1c2ec8935eb1380effc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* Software floating-point emulation.
   Convert a to 32bit signed integer
   Copyright (C) 1997-2016 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   Contributed by Richard Henderson (rth@cygnus.com) and
		  Jakub Jelinek (jj@ultra.linux.cz).

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   In addition to the permissions in the GNU Lesser General Public
   License, the Free Software Foundation gives you unlimited
   permission to link the compiled version of this file into
   combinations with other programs, and to distribute those
   combinations without any restriction coming from the use of this
   file.  (The Lesser General Public License restrictions do apply in
   other respects; for example, they cover modification of the file,
   and distribution when not linked into a combine executable.)

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */

#include "soft-fp.h"
#include "single.h"

SItype
__fixsfsi (SFtype a)
{
  FP_DECL_EX;
  FP_DECL_S (A);
  USItype r;

  FP_INIT_EXCEPTIONS;
  FP_UNPACK_RAW_S (A, a);
  FP_TO_INT_S (r, A, SI_BITS, 1);
  FP_HANDLE_EXCEPTIONS;

  return r;
}