blob: 52b4a4d123a78aa2ae5a981237fadb4bd30bf331 [file] [log] [blame]
; RUN: llc < %s
; NVPTX can not select llvm.stacksave (dynamic_stackalloc) and llvm.stackrestore
; UNSUPPORTED: nvptx
declare i8* @llvm.stacksave()
declare void @llvm.stackrestore(i8*)
define i32* @test(i32 %N) {
%tmp = call i8* @llvm.stacksave( ) ; <i8*> [#uses=1]
%P = alloca i32, i32 %N ; <i32*> [#uses=1]
call void @llvm.stackrestore( i8* %tmp )
%Q = alloca i32, i32 %N ; <i32*> [#uses=0]
ret i32* %P
}