diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-15 18:34:44 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-15 18:34:44 +0000 |
commit | b6f75f73fde2c7b4a19dd8fee5f3be1bc87d5705 (patch) | |
tree | f8745c34b8d7301a25595745755d3a04175c2d54 /compiler-rt/lib/abi.h | |
parent | 3306157ab3ea637db40473a24ba95ab9bd5d0ca5 (diff) | |
download | bcm5719-llvm-b6f75f73fde2c7b4a19dd8fee5f3be1bc87d5705.tar.gz bcm5719-llvm-b6f75f73fde2c7b4a19dd8fee5f3be1bc87d5705.zip |
lib: Integrate abi.h into int_lib.h, there aren't good enough reasons for this extra complexity.
llvm-svn: 144660
Diffstat (limited to 'compiler-rt/lib/abi.h')
-rw-r--r-- | compiler-rt/lib/abi.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/compiler-rt/lib/abi.h b/compiler-rt/lib/abi.h deleted file mode 100644 index 2534317ac8f..00000000000 --- a/compiler-rt/lib/abi.h +++ /dev/null @@ -1,23 +0,0 @@ -/* ===------ abi.h - configuration header for compiler-rt -----------------=== - * - * 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. - * - * ===----------------------------------------------------------------------=== - * - * This file is a configuration header for compiler-rt. - * This file is not part of the interface of this library. - * - * ===----------------------------------------------------------------------=== - */ - -#if __ARM_EABI__ -# define ARM_EABI_FNALIAS(aeabi_name, name) \ - void __aeabi_##aeabi_name() __attribute__((alias("__" #name))); -# define COMPILER_RT_ABI __attribute__((pcs("aapcs"))) -#else -# define ARM_EABI_FNALIAS(aeabi_name, name) -# define COMPILER_RT_ABI -#endif |