blob: 5655e993a263a332b62ed02558915f1733856a4d [file] [log] [blame]
Anton Korobeynikov3de64892009-07-16 14:05:32 +00001; XFAIL: *
Anton Korobeynikov98383422009-07-16 13:33:57 +00002; RUN: llvm-as < %s | llc -march=systemz | grep nill | count 1
3; RUN: llvm-as < %s | llc -march=systemz | grep nilh | count 1
4; RUN: llvm-as < %s | llc -march=systemz | grep nihl | count 1
5; RUN: llvm-as < %s | llc -march=systemz | grep nihh | count 1
6
7define i64 @foo1(i64 %a, i64 %b) {
Anton Korobeynikov82583bf2009-07-16 13:32:49 +00008entry:
9 %c = and i64 %a, 1
10 ret i64 %c
11}
12
Anton Korobeynikov98383422009-07-16 13:33:57 +000013define i64 @foo2(i64 %a, i64 %b) {
14entry:
15 %c = and i64 %a, 131072
16 ret i64 %c
17}
18
19define i64 @foo3(i64 %a, i64 %b) {
20entry:
21 %c = and i64 %a, 8589934592
22 ret i64 %c
23}
24
25define i64 @foo4(i64 %a, i64 %b) {
26entry:
27 %c = and i64 %a, 562949953421312
28 ret i64 %c
29}