2009-09-09 08:09:15 +08:00
|
|
|
; RUN: llc < %s -march=systemz | grep ngr | count 3
|
|
|
|
; RUN: llc < %s -march=systemz | grep nihf | count 1
|
2009-07-16 21:42:31 +08:00
|
|
|
|
|
|
|
define i32 @foo(i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%c = and i32 %a, %b
|
|
|
|
ret i32 %c
|
|
|
|
}
|
|
|
|
|
2011-06-17 11:14:27 +08:00
|
|
|
define zeroext i32 @foo1(i32 %a, i32 %b) {
|
2009-07-16 21:42:31 +08:00
|
|
|
entry:
|
|
|
|
%c = and i32 %a, %b
|
|
|
|
ret i32 %c
|
|
|
|
}
|
|
|
|
|
2011-06-17 11:14:27 +08:00
|
|
|
define signext i32 @foo2(i32 %a, i32 %b) {
|
2009-07-16 21:42:31 +08:00
|
|
|
entry:
|
|
|
|
%c = and i32 %a, %b
|
|
|
|
ret i32 %c
|
|
|
|
}
|
|
|
|
|