blob: 831ad3837d96d0c32ebf9f2cd9e744f6506b51a3 [file] [log] [blame]
Paul Robinsond89125a2013-11-22 19:11:24 +00001; RUN: llc -O2 -march=x86 < %s | FileCheck %s
2
3define i32* @fooOptnone(i32* %p, i32* %q, i32** %z) #0 {
4entry:
David Blaikiea79ac142015-02-27 21:17:42 +00005 %r = load i32, i32* %p
6 %s = load i32, i32* %q
7 %y = load i32*, i32** %z
Paul Robinsond89125a2013-11-22 19:11:24 +00008
9 %t0 = add i32 %r, %s
10 %t1 = add i32 %t0, 1
David Blaikie79e6c742015-02-27 19:29:02 +000011 %t2 = getelementptr i32, i32* %y, i32 1
12 %t3 = getelementptr i32, i32* %t2, i32 %t1
Paul Robinsond89125a2013-11-22 19:11:24 +000013
14 ret i32* %t3
15
16; 'optnone' should use fast-isel which will not produce 'lea'.
17; CHECK-LABEL: fooOptnone:
18; CHECK-NOT: lea
19; CHECK: ret
20}
21
22define i32* @fooNormal(i32* %p, i32* %q, i32** %z) #1 {
23entry:
David Blaikiea79ac142015-02-27 21:17:42 +000024 %r = load i32, i32* %p
25 %s = load i32, i32* %q
26 %y = load i32*, i32** %z
Paul Robinsond89125a2013-11-22 19:11:24 +000027
28 %t0 = add i32 %r, %s
29 %t1 = add i32 %t0, 1
David Blaikie79e6c742015-02-27 19:29:02 +000030 %t2 = getelementptr i32, i32* %y, i32 1
31 %t3 = getelementptr i32, i32* %t2, i32 %t1
Paul Robinsond89125a2013-11-22 19:11:24 +000032
33 ret i32* %t3
34
35; Normal ISel will produce 'lea'.
36; CHECK-LABEL: fooNormal:
37; CHECK: lea
38; CHECK: ret
39}
40
41attributes #0 = { nounwind optnone noinline }
42attributes #1 = { nounwind }