summaryrefslogtreecommitdiff
path: root/test/builtins/Unit/divtc3_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/divtc3_test.c
parent5e4cbf9d604ff7d0e270ecbb11484504f36a7c90 (diff)
downloadcompiler-rt-c25051bac6276ec74bbc62b934b71c78da7aa041.tar.gz
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/divtc3_test.c')
-rw-r--r--test/builtins/Unit/divtc3_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/builtins/Unit/divtc3_test.c b/test/builtins/Unit/divtc3_test.c
index 50918d68f..ad2c96dc0 100644
--- a/test/builtins/Unit/divtc3_test.c
+++ b/test/builtins/Unit/divtc3_test.c
@@ -21,7 +21,7 @@
// Returns: the quotient of (a + ib) / (c + id)
-long double _Complex
+COMPILER_RT_ABI long double _Complex
__divtc3(long double __a, long double __b, long double __c, long double __d);
enum {zero, non_zero, inf, NaN, non_zero_nan};