Provide proper patterns for and with imm instructions. Tune the tests accordingly.
[oota-llvm.git] / test / CodeGen / SystemZ / 03-RetAndSubreg.ll
1 ; RUN: llvm-as < %s | llc -march=systemz | grep ngr | count 3
2 ; RUN: llvm-as < %s | llc -march=systemz | grep nihf | count 1
3
4 define i32 @foo(i32 %a, i32 %b) {
5 entry:
6     %c = and i32 %a, %b
7     ret i32 %c
8 }
9
10 define i32 @foo1(i32 %a, i32 %b) zeroext {
11 entry:
12     %c = and i32 %a, %b
13     ret i32 %c
14 }
15
16 define i32 @foo2(i32 %a, i32 %b) signext {
17 entry:
18     %c = and i32 %a, %b
19     ret i32 %c
20 }
21