You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
20
external/llvm/test/CodeGen/XCore/2011-08-01-DynamicAllocBug.ll
vendored
Normal file
20
external/llvm/test/CodeGen/XCore/2011-08-01-DynamicAllocBug.ll
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: llc < %s -march=xcore | FileCheck %s
|
||||
|
||||
declare void @g()
|
||||
declare i8* @llvm.stacksave() nounwind
|
||||
declare void @llvm.stackrestore(i8*) nounwind
|
||||
|
||||
define void @f(i32** %p, i32 %size) {
|
||||
allocas:
|
||||
%0 = call i8* @llvm.stacksave()
|
||||
%a = alloca i32, i32 %size
|
||||
store i32* %a, i32** %p
|
||||
call void @g()
|
||||
call void @llvm.stackrestore(i8* %0)
|
||||
ret void
|
||||
}
|
||||
; CHECK-LABEL: f:
|
||||
; CHECK: ldaw [[REGISTER:r[0-9]+]], {{r[0-9]+}}[-r1]
|
||||
; CHECK: set sp, [[REGISTER]]
|
||||
; CHECK: extsp 1
|
||||
; CHECK: bl g
|
Reference in New Issue
Block a user