Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / SystemZ / 03-RetAndSubreg.ll
blob7fbc5892c0e0beb3a98cfa93960054150633c179
1 ; RUN: llvm-as < %s | llc -march=systemz | grep ngr | count 3
2 ; RUN: llvm-as < %s | llc -march=systemz | grep nihf | count 1
4 define i32 @foo(i32 %a, i32 %b) {
5 entry:
6     %c = and i32 %a, %b
7     ret i32 %c
10 define i32 @foo1(i32 %a, i32 %b) zeroext {
11 entry:
12     %c = and i32 %a, %b
13     ret i32 %c
16 define i32 @foo2(i32 %a, i32 %b) signext {
17 entry:
18     %c = and i32 %a, %b
19     ret i32 %c