Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / merge-sp-update-lea.ll
blob28cbd33ef097217337e0471183a1e128029772fd
1 ; RUN: llc %s -o - | FileCheck %s
2 target datalayout = "e-m:o-p:32:32-f64:32:64-f80:128-n8:16:32-S128"
3 target triple = "i386-apple-macosx10.5"
5 ; Check that the merging of SP updates, when LEAs are involved, happen
6 ; correctly.
7 ; CHECK-LABEL: useLEA:
8 ; CHECK: calll _realloc
9 ; Make sure that the offset we get here is 8 + 16.
10 ; We used to have 8 + 1 because we were not reading the right immediate form
11 ; the LEA instruction.
12 ; CHECK-NEXT: leal 24(%esp), %esp
13 define noalias ptr @useLEA(ptr nocapture %p, i32 %nbytes) #0 {
14 entry:
15   %cmp = icmp slt i32 %nbytes, 0
16   br i1 %cmp, label %cond.end.3, label %cond.false
18 cond.false:                                       ; preds = %entry
19   %tobool = icmp ne i32 %nbytes, 0
20   %cond = select i1 %tobool, i32 %nbytes, i32 1
21   %call = tail call ptr @realloc(ptr %p, i32 %cond)
22   br label %cond.end.3
24 cond.end.3:                                       ; preds = %entry, %cond.false
25   %cond4 = phi ptr [ %call, %cond.false ], [ null, %entry ]
26   ret ptr %cond4
29 ; Function Attrs: nounwind optsize
30 declare noalias ptr @realloc(ptr nocapture, i32)
32 attributes #0 = { nounwind optsize ssp "disable-tail-calls"="false" "frame-pointer"="all" "target-features"="+lea-sp" }