xref: /aosp_15_r20/external/llvm/test/CodeGen/Thumb/push.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc < %s -mtriple=thumb-apple-darwin -disable-fp-elim | FileCheck %s
2; rdar://7268481
3
4define void @t() nounwind {
5; CHECK-LABEL: t:
6; CHECK: push {r7}
7entry:
8  call void asm sideeffect alignstack ".long 0xe7ffdefe", ""() nounwind
9  ret void
10}
11