]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/LibC/Softfloat/negtf2.c
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / StdLib / LibC / Softfloat / negtf2.c
diff --git a/StdLib/LibC/Softfloat/negtf2.c b/StdLib/LibC/Softfloat/negtf2.c
deleted file mode 100644 (file)
index 65b19bd..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $NetBSD: negtf2.c,v 1.1 2011/01/17 10:08:35 matt Exp $ */\r
-/** @file\r
-*\r
-*  Copyright (c) 2013 - 2014, ARM Limited. All rights reserved.\r
-*\r
-*  This program and the accompanying materials\r
-*  are licensed and made available under the terms and conditions of the BSD License\r
-*  which accompanies this distribution.  The full text of the license may be found at\r
-*  http://opensource.org/licenses/bsd-license.php\r
-*\r
-*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-*\r
-**/\r
-/*\r
- * Written by Matt Thomas, 2011.  This file is in the Public Domain.\r
- */\r
-\r
-#include "softfloat-for-gcc.h"\r
-#include "milieu.h"\r
-#include "softfloat.h"\r
-\r
-#include <sys/cdefs.h>\r
-#if defined(LIBC_SCCS) && !defined(lint)\r
-__RCSID("$NetBSD: negtf2.c,v 1.1 2011/01/17 10:08:35 matt Exp $");\r
-#endif /* LIBC_SCCS and not lint */\r
-\r
-#ifdef FLOAT128\r
-\r
-float128 __negtf2(float128);\r
-\r
-float128\r
-__negtf2(float128 a)\r
-{\r
-\r
-    /* libgcc1.c says -a */\r
-    a.high ^= FLOAT64_MANGLE(0x8000000000000000ULL);\r
-    return a;\r
-}\r
-\r
-#endif /* FLOAT128 */\r