
The LIT test cases were migrated with the script provided by Nikita Popov. No manual changes were made. Committed without review since no functional changes, after consultation with uweigand.
15 lines
297 B
LLVM
15 lines
297 B
LLVM
; Test the stacksave builtin.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
declare ptr@llvm.stacksave()
|
|
|
|
define void @f1(ptr %dest) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: stg %r15, 0(%r2)
|
|
; CHECK: br %r14
|
|
%addr = call ptr@llvm.stacksave()
|
|
store volatile ptr %addr, ptr %dest
|
|
ret void
|
|
}
|