Fix PR8612 in the standard spiller, take two.
[oota-llvm.git] / test / CodeGen / Thumb2 / thumb2-lsr2.ll
index 716859709a961a62b37aed7bff601132e229ab15..87800f9d73fb6ce2a6818b60a4bfbb6b5ca8c1de 100644 (file)
@@ -1,6 +1,8 @@
-; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {lsr\\.w\\W*r\[0-9\],\\W*r\[0-9\],\\W*r\[0-9\]} | count 1
+; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
 
 define i32 @f1(i32 %a, i32 %b) {
+; CHECK: f1:
+; CHECK: lsrs r0, r1
     %tmp = lshr i32 %a, %b
     ret i32 %tmp
 }