1 ; RUN: llc -O3 < %s -aarch64-enable-atomic-cfg-tidy=0 -aarch64-enable-gep-opt=false -verify-machineinstrs | FileCheck %s
2 target triple = "arm64-apple-ios"
5 ; CSE between "icmp reg reg" and "sub reg reg".
6 ; Both can be in the same basic block or in different basic blocks.
7 define i8* @t1(i8* %base, i32* nocapture %offset, i32 %size) nounwind {
18 %0 = load i32, i32* %offset, align 4
19 %cmp = icmp slt i32 %0, %size
20 %s = sub nsw i32 %0, %size
21 br i1 %cmp, label %return, label %if.end
24 %sub = sub nsw i32 %0, %size
25 %s2 = sub nsw i32 %s, %size
26 %s3 = sub nsw i32 %sub, %s2
27 store i32 %s3, i32* %offset, align 4
28 %add.ptr = getelementptr inbounds i8, i8* %base, i32 %sub
32 %retval.0 = phi i8* [ %add.ptr, %if.end ], [ null, %entry ]
36 ; CSE between "icmp reg imm" and "sub reg imm".
37 define i8* @t2(i8* %base, i32* nocapture %offset) nounwind {
46 %0 = load i32, i32* %offset, align 4
47 %cmp = icmp slt i32 %0, 1
48 br i1 %cmp, label %return, label %if.end
51 %sub = sub nsw i32 %0, 1
52 store i32 %sub, i32* %offset, align 4
53 %add.ptr = getelementptr inbounds i8, i8* %base, i32 %sub
57 %retval.0 = phi i8* [ %add.ptr, %if.end ], [ null, %entry ]