[llvm-commits] [llvm] r139051 - /llvm/trunk/test/MC/ARM/basic-thumb2-instructions.s

Jim Grosbach grosbach at apple.com
Fri Sep 2 16:28:46 PDT 2011


Author: grosbach
Date: Fri Sep  2 18:28:46 2011
New Revision: 139051

URL: http://llvm.org/viewvc/llvm-project?rev=139051&view=rev
Log:
Thumb2 parsing and encoding for BFI.

Modified:
    llvm/trunk/test/MC/ARM/basic-thumb2-instructions.s

Modified: llvm/trunk/test/MC/ARM/basic-thumb2-instructions.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/basic-thumb2-instructions.s?rev=139051&r1=139050&r2=139051&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/basic-thumb2-instructions.s (original)
+++ llvm/trunk/test/MC/ARM/basic-thumb2-instructions.s Fri Sep  2 18:28:46 2011
@@ -206,6 +206,18 @@
 
 
 @------------------------------------------------------------------------------
+@ BFI
+ at ------------------------------------------------------------------------------
+        bfi r5, r2, #3, #17
+        it ne
+        bfine r5, r2, #3, #17
+
+@ CHECK: bfi	r5, r2, #3, #17         @ encoding: [0x62,0xf3,0xd3,0x05]
+@ CHECK: it	ne                      @ encoding: [0x18,0xbf]
+@ CHECK: bfine	r5, r2, #3, #17         @ encoding: [0x62,0xf3,0xd3,0x05]
+
+
+ at ------------------------------------------------------------------------------
 @ CBZ/CBNZ
 @------------------------------------------------------------------------------
         cbnz    r7, #6





More information about the llvm-commits mailing list