1 2 3 4 5 6 7 8 9 10 11 12 13
; RUN: llc < %s -mtriple=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)