blob: 8b65757e19fb88fbfb96da37431b16c67f0cc4b8 [file] [log] [blame]
Anton Korobeynikovaee75f32009-07-16 13:42:31 +00001; RUN: llvm-as < %s | llc -march=systemz | grep ngr | count 3
2
3define i32 @foo(i32 %a, i32 %b) {
4entry:
5 %c = and i32 %a, %b
6 ret i32 %c
7}
8
9define i32 @foo1(i32 %a, i32 %b) zeroext {
10entry:
11 %c = and i32 %a, %b
12 ret i32 %c
13}
14
15define i32 @foo2(i32 %a, i32 %b) signext {
16entry:
17 %c = and i32 %a, %b
18 ret i32 %c
19}
20