[compiler-rt] r200043 - ARM: remove unnecessary .arm directive

Tim Northover tnorthover at apple.com
Fri Jan 24 13:58:22 PST 2014


Author: tnorthover
Date: Fri Jan 24 15:58:22 2014
New Revision: 200043

URL: http://llvm.org/viewvc/llvm-project?rev=200043&view=rev
Log:
ARM: remove unnecessary .arm directive

It was redundant (since ARM mode is the default) and misleading since
(e.g.) Cortex-A15 would not satisfy the #ifdef but would be in ARM
mode regardless.

Modified:
    compiler-rt/trunk/lib/arm/udivmodsi4.S

Modified: compiler-rt/trunk/lib/arm/udivmodsi4.S
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/arm/udivmodsi4.S?rev=200043&r1=200042&r2=200043&view=diff
==============================================================================
--- compiler-rt/trunk/lib/arm/udivmodsi4.S (original)
+++ compiler-rt/trunk/lib/arm/udivmodsi4.S Fri Jan 24 15:58:22 2014
@@ -23,9 +23,6 @@
 #endif
 
 	.text
-#if !__ARM_ARCH_EXT_IDIV__
-	.arm
-#endif
 	.p2align 2
 DEFINE_COMPILERRT_FUNCTION(__udivmodsi4)
 #if __ARM_ARCH_EXT_IDIV__





More information about the llvm-commits mailing list