aboutsummaryrefslogtreecommitdiff
path: root/lib/subvsi3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subvsi3.c')
-rw-r--r--lib/subvsi3.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/subvsi3.c b/lib/subvsi3.c
index 51bb454475aa..03983f747e49 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;