Fixed some bugs.
[llvm/zpu.git] / test / CodeGen / SystemZ / 03-RetOrSubreg.ll
blob4d7661acb716dcf1058471943ff49d2af9448b98
1 ; RUN: llc < %s -march=systemz | grep ogr   | count 3
2 ; RUN: llc < %s -march=systemz | grep nihf  | count 1
3 ; RUN: llc < %s -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