blob: 75dc90a9b00e491f52aeab08c05fcd7967618e94 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=systemz | grep ngr | count 3
2; RUN: llc < %s -march=systemz | grep nihf | count 1
Anton Korobeynikova51752c2009-07-16 13:42:31 +00003
4define i32 @foo(i32 %a, i32 %b) {
5entry:
6 %c = and i32 %a, %b
7 ret i32 %c
8}
9
Chris Lattner26b00002011-06-17 03:14:27 +000010define zeroext i32 @foo1(i32 %a, i32 %b) {
Anton Korobeynikova51752c2009-07-16 13:42:31 +000011entry:
12 %c = and i32 %a, %b
13 ret i32 %c
14}
15
Chris Lattner26b00002011-06-17 03:14:27 +000016define signext i32 @foo2(i32 %a, i32 %b) {
Anton Korobeynikova51752c2009-07-16 13:42:31 +000017entry:
18 %c = and i32 %a, %b
19 ret i32 %c
20}
21