Revert "Rewrite a test to count emitted instructions without using -stats"
[oota-llvm.git] / test / CodeGen / Thumb / long-setcc.ll
1 ; RUN: llc < %s -march=thumb | grep cmp | count 1
2
3
4 define i1 @t1(i64 %x) {
5         %B = icmp slt i64 %x, 0
6         ret i1 %B
7 }
8
9 define i1 @t2(i64 %x) {
10         %tmp = icmp ult i64 %x, 4294967296
11         ret i1 %tmp
12 }
13
14 define i1 @t3(i32 %x) {
15         %tmp = icmp ugt i32 %x, -1
16         ret i1 %tmp
17 }