2009-08-05 12:02:56 +08:00
|
|
|
/* ===-- negvsi2.c - Implement __negvsi2 -----------------------------------===
|
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
2010-11-17 06:13:33 +08:00
|
|
|
* This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
* Source Licenses. See LICENSE.TXT for details.
|
2009-08-05 12:02:56 +08:00
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements __negvsi2 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2009-08-05 12:02:56 +08:00
|
|
|
/* Returns: -a */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-05 12:02:56 +08:00
|
|
|
/* Effects: aborts if -a overflows */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
COMPILER_RT_ABI si_int
|
2009-06-27 00:47:03 +08:00
|
|
|
__negvsi2(si_int a)
|
|
|
|
{
|
|
|
|
const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
|
|
|
|
if (a == MIN)
|
2010-04-01 01:00:45 +08:00
|
|
|
compilerrt_abort();
|
2009-06-27 00:47:03 +08:00
|
|
|
return -a;
|
|
|
|
}
|