Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Generic / stacksave-restore.ll
bloba2c1ba4d62b090a9f3f0d5556299ccc00a892fce
1 ; RUN: llc < %s
3 ; NVPTX can not select llvm.stacksave (dynamic_stackalloc) and llvm.stackrestore
4 ; UNSUPPORTED: target=nvptx{{.*}}
6 declare ptr @llvm.stacksave()
8 declare void @llvm.stackrestore(ptr)
10 define ptr @test(i32 %N) {
11         %tmp = call ptr @llvm.stacksave( )              ; <ptr> [#uses=1]
12         %P = alloca i32, i32 %N         ; <ptr> [#uses=1]
13         call void @llvm.stackrestore( ptr %tmp )
14         %Q = alloca i32, i32 %N         ; <ptr> [#uses=0]
15         ret ptr %P