llvm/llvm/test/CodeGen/MSP430/stacksave_restore.ll

; RUN: llc < %s -march=msp430

target triple = "msp430"

define void @foo() {
entry:
  %0 = tail call ptr @llvm.stacksave()
  tail call void @llvm.stackrestore(ptr %0)
  ret void
}

declare ptr @llvm.stacksave()
declare void @llvm.stackrestore(ptr)