From e63da933eba10f5ea5bf39af47a0ded719c2cf5d Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Tue, 19 Apr 2011 17:52:09 +0000 Subject: Move abi bits to separate header. Force AAPCS for EABI in accordance with ARM RTABI. llvm-svn: 129769 --- compiler-rt/lib/subvsi3.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'compiler-rt/lib/subvsi3.c') diff --git a/compiler-rt/lib/subvsi3.c b/compiler-rt/lib/subvsi3.c index 51bb454475a..03983f747e4 100644 --- a/compiler-rt/lib/subvsi3.c +++ b/compiler-rt/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 @@ -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; -- cgit v1.2.3