2009-08-05 12:02:56 +08:00
|
|
|
/* ===-- subvsi3.c - Implement __subvsi3 -----------------------------------===
|
|
|
|
*
|
2011-04-20 01:52:09 +08:00
|
|
|
* The LLVM Compiler Infrastructure
|
2009-08-05 12:02:56 +08:00
|
|
|
*
|
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 __subvsi3 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 - b */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-05 12:02:56 +08:00
|
|
|
/* Effects: aborts if a - b 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
|
|
|
__subvsi3(si_int a, si_int b)
|
|
|
|
{
|
|
|
|
si_int s = a - b;
|
|
|
|
if (b >= 0)
|
|
|
|
{
|
|
|
|
if (s > a)
|
2010-04-01 01:00:45 +08:00
|
|
|
compilerrt_abort();
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (s <= a)
|
2010-04-01 01:00:45 +08:00
|
|
|
compilerrt_abort();
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|