blob: 3d49ba2899d293e97c1e14dc249277413cd26dbc [file] [log] [blame]
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00001/* ===-- negdi2.c - Implement __negdi2 -------------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant5b791f62010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __negdi2 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000014
15#include "int_lib.h"
16
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000017/* Returns: -a */
Daniel Dunbarfd089992009-06-26 16:47:03 +000018
Joerg Sonnenberger6e99daa2014-03-01 15:30:50 +000019COMPILER_RT_ABI di_int
Daniel Dunbarfd089992009-06-26 16:47:03 +000020__negdi2(di_int a)
21{
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000022 /* Note: this routine is here for API compatibility; any sane compiler
23 * should expand it inline.
24 */
Eli Friedman30bd27b2009-07-03 02:26:38 +000025 return -a;
Daniel Dunbarfd089992009-06-26 16:47:03 +000026}