Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / SystemZ / 02-RetAndImm.ll
blobfb56f2fe9ce2bfb9d83d87419d2ca5d8a7b7ae02
1 ; RUN: llvm-as < %s | llc -march=systemz | grep ngr   | count 4
2 ; RUN: llvm-as < %s | llc -march=systemz | grep llilh | count 1
3 ; RUN: llvm-as < %s | llc -march=systemz | grep llihl | count 1
4 ; RUN: llvm-as < %s | llc -march=systemz | grep llihh | count 1
6 define i64 @foo1(i64 %a, i64 %b) {
7 entry:
8     %c = and i64 %a, 1
9     ret i64 %c
12 define i64 @foo2(i64 %a, i64 %b) {
13 entry:
14     %c = and i64 %a, 131072
15     ret i64 %c
18 define i64 @foo3(i64 %a, i64 %b) {
19 entry:
20     %c = and i64 %a, 8589934592
21     ret i64 %c
24 define i64 @foo4(i64 %a, i64 %b) {
25 entry:
26     %c = and i64 %a, 562949953421312
27     ret i64 %c