Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / MSP430 / stacksave_restore.ll
blob64bfcc63aad7c2cd18010c499a23ffe7709854eb
1 ; RUN: llc < %s -march=msp430
3 target triple = "msp430"
5 define void @foo() {
6 entry:
7   %0 = tail call ptr @llvm.stacksave()
8   tail call void @llvm.stackrestore(ptr %0)
9   ret void
12 declare ptr @llvm.stacksave()
13 declare void @llvm.stackrestore(ptr)