Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / SystemZ / 03-RetOrSubreg.ll
blob7491c083f88825514af428f731ec6aa56a5689ba
1 ; RUN: llvm-as < %s | llc -march=systemz | grep ogr   | count 3
2 ; RUN: llvm-as < %s | llc -march=systemz | grep nihf  | count 1
3 ; RUN: llvm-as < %s | llc -march=systemz | grep lgfr  | count 1
6 define i32 @foo(i32 %a, i32 %b) {
7 entry:
8     %c = or i32 %a, %b
9     ret i32 %c
12 define i32 @foo1(i32 %a, i32 %b) zeroext {
13 entry:
14     %c = or i32 %a, %b
15     ret i32 %c
18 define i32 @foo2(i32 %a, i32 %b) signext {
19 entry:
20     %c = or i32 %a, %b
21     ret i32 %c