blob: 0a812715ae579c5e933a3562e047e26cc993ed31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
; RUN: llc < %s -march=systemz | grep ahi | count 3
; RUN: llc < %s -march=systemz | grep afi | count 3
; RUN: llc < %s -march=systemz | grep lgfr | count 4
; RUN: llc < %s -march=systemz | grep llgfr | count 2
define i32 @foo1(i32 %a, i32 %b) {
entry:
%c = add i32 %a, 1
ret i32 %c
}
define i32 @foo2(i32 %a, i32 %b) {
entry:
%c = add i32 %a, 131072
ret i32 %c
}
define i32 @foo3(i32 %a, i32 %b) zeroext {
entry:
%c = add i32 %a, 1
ret i32 %c
}
define i32 @foo4(i32 %a, i32 %b) zeroext {
entry:
%c = add i32 %a, 131072
ret i32 %c
}
define i32 @foo5(i32 %a, i32 %b) signext {
entry:
%c = add i32 %a, 1
ret i32 %c
}
define i32 @foo6(i32 %a, i32 %b) signext {
entry:
%c = add i32 %a, 131072
ret i32 %c
}
|