summaryrefslogtreecommitdiff
path: root/test/builtins/Unit/absvti2_test.c
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@google.com>2015-04-24 15:45:57 +0000
committerDerek Schuff <dschuff@google.com>2015-04-24 15:45:57 +0000
commitc25051bac6276ec74bbc62b934b71c78da7aa041 (patch)
treea1225e068c9754cce71acf94d7f76ddd0042446d /test/builtins/Unit/absvti2_test.c
parent5e4cbf9d604ff7d0e270ecbb11484504f36a7c90 (diff)
Add COMPILER_RT_ABI attribute to declarations of builtin functions in unittests
Summary: This makes their local declarations match their definitions for ARM targets, where they have a different calling convention. This really only affects functions that use floating point types (since the runtime functions use soft-float, and some targets may default to hard-float) but it seemed good to make it uniform and do the int-only ones too. Differential Revision: http://reviews.llvm.org/D9062 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@235722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/builtins/Unit/absvti2_test.c')
-rw-r--r--test/builtins/Unit/absvti2_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/builtins/Unit/absvti2_test.c b/test/builtins/Unit/absvti2_test.c
index 9b71f200a..6c626e97d 100644
--- a/test/builtins/Unit/absvti2_test.c
+++ b/test/builtins/Unit/absvti2_test.c
@@ -21,7 +21,7 @@
// Effects: aborts if abs(x) < 0
-ti_int __absvti2(ti_int a);
+COMPILER_RT_ABI ti_int __absvti2(ti_int a);
int test__absvti2(ti_int a)
{