]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/compiler-rt/lib/subvti3.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / compiler-rt / lib / subvti3.c
1 /* ===-- subvti3.c - Implement __subvti3 -----------------------------------===
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is dual licensed under the MIT and the University of Illinois Open
6  * Source Licenses. See LICENSE.TXT for details.
7  *
8  * ===----------------------------------------------------------------------===
9  *
10  * This file implements __subvti3 for the compiler_rt library.
11  *
12  * ===----------------------------------------------------------------------===
13  */
14
15 #if __x86_64
16
17 #include "int_lib.h"
18 #include <stdlib.h>
19
20 /* Returns: a - b */
21
22 /* Effects: aborts if a - b overflows */
23
24 ti_int
25 __subvti3(ti_int a, ti_int b)
26 {
27     ti_int s = a - b;
28     if (b >= 0)
29     {
30         if (s > a)
31             compilerrt_abort();
32     }
33     else
34     {
35         if (s <= a)
36             compilerrt_abort();
37     }
38     return s;
39 }
40
41 #endif /* __x86_64 */