diff options
author | ed <ed@FreeBSD.org> | 2011-06-02 20:02:42 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2011-06-02 20:02:42 +0000 |
commit | ee2dbb0f7e84d908ac62aecc178992c9be1ca636 (patch) | |
tree | 51db692a6c937b68c7180d996af6bb7952b4b55d /lib/subvsi3.c | |
parent | cbbb7af7461cc897920c5924c6bdc1fe3b86a7e5 (diff) | |
download | FreeBSD-src-ee2dbb0f7e84d908ac62aecc178992c9be1ca636.zip FreeBSD-src-ee2dbb0f7e84d908ac62aecc178992c9be1ca636.tar.gz |
Import compiler-rt r132478.
Diffstat (limited to 'lib/subvsi3.c')
-rw-r--r-- | lib/subvsi3.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/subvsi3.c b/lib/subvsi3.c index 51bb454..03983f7 100644 --- a/lib/subvsi3.c +++ b/lib/subvsi3.c @@ -1,6 +1,6 @@ /* ===-- subvsi3.c - Implement __subvsi3 -----------------------------------=== * - * The LLVM Compiler Infrastructure + * The LLVM Compiler Infrastructure * * This file is dual licensed under the MIT and the University of Illinois Open * Source Licenses. See LICENSE.TXT for details. @@ -11,6 +11,7 @@ * * ===----------------------------------------------------------------------=== */ +#include "abi.h" #include "int_lib.h" #include <stdlib.h> @@ -19,7 +20,7 @@ /* Effects: aborts if a - b overflows */ -si_int +COMPILER_RT_ABI si_int __subvsi3(si_int a, si_int b) { si_int s = a - b; |