diff options
author | Tim Northover <tnorthover@apple.com> | 2014-01-24 22:04:15 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-01-24 22:04:15 +0000 |
commit | 7449bda3d93e7c04615c667a605f3b690e39c25f (patch) | |
tree | a5623ddc20b339034e04cf309529a6f97d05e3f8 | |
parent | 5386cae6b796defd868b38ac48ff269c3b6305fa (diff) | |
download | bcm5719-llvm-7449bda3d93e7c04615c667a605f3b690e39c25f.tar.gz bcm5719-llvm-7449bda3d93e7c04615c667a605f3b690e39c25f.zip |
ARM: also remove useless .arm directive from other files
llvm-svn: 200044
-rw-r--r-- | compiler-rt/lib/arm/udivsi3.S | 3 | ||||
-rw-r--r-- | compiler-rt/lib/arm/umodsi3.S | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/compiler-rt/lib/arm/udivsi3.S b/compiler-rt/lib/arm/udivsi3.S index 8224d3bb336..7bc4f5248d4 100644 --- a/compiler-rt/lib/arm/udivsi3.S +++ b/compiler-rt/lib/arm/udivsi3.S @@ -25,9 +25,6 @@ #endif .text -#if !__ARM_ARCH_EXT_IDIV__ - .arm -#endif .p2align 2 DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_uidiv, __udivsi3) DEFINE_COMPILERRT_FUNCTION(__udivsi3) diff --git a/compiler-rt/lib/arm/umodsi3.S b/compiler-rt/lib/arm/umodsi3.S index 66735ab2528..2680578660b 100644 --- a/compiler-rt/lib/arm/umodsi3.S +++ b/compiler-rt/lib/arm/umodsi3.S @@ -25,9 +25,6 @@ #endif .text -#if !__ARM_ARCH_EXT_IDIV__ - .arm -#endif .p2align 2 DEFINE_COMPILERRT_FUNCTION(__umodsi3) #if __ARM_ARCH_EXT_IDIV__ |