diff options
Diffstat (limited to 'compiler-rt/lib/subvdi3.c')
-rw-r--r-- | compiler-rt/lib/subvdi3.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler-rt/lib/subvdi3.c b/compiler-rt/lib/subvdi3.c index 17f55d00059..36b51ad979a 100644 --- a/compiler-rt/lib/subvdi3.c +++ b/compiler-rt/lib/subvdi3.c @@ -1,6 +1,6 @@ /* ===-- subvdi3.c - Implement __subvdi3 -----------------------------------=== * - * 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 */ -di_int +COMPILER_RT_ABI di_int __subvdi3(di_int a, di_int b) { di_int s = a - b; |