Remove support in configure for unsupported architectures
[glibc.git] / sysdeps / ia64 / fpu / s_fpclassify.S
bloba9df24a57f0b126fb93755c445c9544d5a62766d
1 /* Return classification value corresponding to argument.
2    Copyright (C) 2000, 2002 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep.h>
21 #undef ret
23 ENTRY (__fpclassify)
25 .mfi
26         fclass.m p6, p7 = farg0, @nat | @qnan | @snan
27         ;;
30 .mfb
31 (p6)    mov ret0 = 0
32 (p7)    fclass.m p7, p8 = farg0, @inf
33 (p6)    br.ret.sptk.many rp
34         ;;
35 }       
37 .mfb
38 (p7)    mov ret0 = 1
39 (p8)    fclass.m p8, p6 = farg0, @zero
40 (p7)    br.ret.sptk.many rp
41         ;;
44 .mfb
45 (p8)    mov ret0 = 2
46 (p6)    fclass.m p6, p7 = farg0, @unorm
47 (p8)    br.ret.sptk.many rp
48         ;;
51         .pred.rel.mutex p6, p7
52 (p6)    mov ret0 = 3
53 (p7)    mov ret0 = 4
54         br.ret.sptk.many rp
56 END (__fpclassify)
58 strong_alias (__fpclassify, __fpclassifyf)
59 strong_alias (__fpclassify, __fpclassifyl)
60 libm_hidden_def (__fpclassify)
61 libm_hidden_def (__fpclassifyf)
62 libm_hidden_def (__fpclassifyl)