From c70a4b1db0cf5e813ae24b0fa96a352399eb6edf Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 15 Feb 2014 22:07:25 -0500 Subject: ia64: relocate out of ports/ subdir --- ports/sysdeps/ia64/fpu/fedisblxcpt.c | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 ports/sysdeps/ia64/fpu/fedisblxcpt.c (limited to 'ports/sysdeps/ia64/fpu/fedisblxcpt.c') diff --git a/ports/sysdeps/ia64/fpu/fedisblxcpt.c b/ports/sysdeps/ia64/fpu/fedisblxcpt.c deleted file mode 100644 index b28d32fd2b..0000000000 --- a/ports/sysdeps/ia64/fpu/fedisblxcpt.c +++ /dev/null @@ -1,36 +0,0 @@ -/* Disable floating-point exceptions. - Copyright (C) 2000-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Jes Sorensen , 2000. - - 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. - - 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 - . */ - -#include - -int -fedisableexcept (int excepts) -{ - fenv_t old_fpsr; - fenv_t new_fpsr; - - /* Get the current fpsr. */ - __asm__ __volatile__ ("mov.m %0=ar.fpsr" : "=r" (old_fpsr)); - - new_fpsr = old_fpsr | ((fenv_t) excepts & FE_ALL_EXCEPT); - - __asm__ __volatile__ ("mov.m ar.fpsr=%0" :: "r" (new_fpsr) : "memory"); - - return (old_fpsr ^ FE_ALL_EXCEPT) & FE_ALL_EXCEPT; -} -- cgit 1.4.1