Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / retaddr2.ll
blob7b90903001fdf26a266dfd8173e9b044fc7a7544
1 ; RUN: llc -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck %s
2 target datalayout = "E-m:e-i64:64-n32:64"
3 target triple = "powerpc64-unknown-linux-gnu"
5 ; Function Attrs: nounwind readnone
6 define ptr @test1() #0 {
7 entry:
8   %0 = tail call ptr @llvm.returnaddress(i32 0)
9   ret ptr %0
12 ; CHECK-LABEL: @test1
13 ; CHECK: mflr {{[0-9]+}}
14 ; CHECK: std 0, 64(1)
15 ; CHECK-DAG: ld 3, 64(1)
16 ; CHECK-DAG: ld [[SR:[0-9]+]], 16(1)
17 ; CHECK: mtlr [[SR]]
18 ; CHECK: blr
20 ; Function Attrs: nounwind readnone
21 declare ptr @llvm.returnaddress(i32) #0
23 attributes #0 = { nounwind readnone }