[RISCV][VLOPT] Add vector narrowing integer right shift instructions to isSupportedIn...
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64_32-stack-pointers.ll
blob1ae7dd4fe5ed283ff0a47f044eacb530e4ec5fcf
1 ; RUN: llc -mtriple=arm64_32-apple-ios9.0 -o - %s | FileCheck %s
3 declare void @callee([8 x i64], ptr, ptr)
5 ; Make sure we don't accidentally store X0 or XZR, which might well
6 ; clobber other arguments or data.
7 define void @test_stack_ptr_32bits(ptr %in) {
8 ; CHECK-LABEL: test_stack_ptr_32bits:
9 ; CHECK-DAG: stp wzr, w0, [sp]
11   call void @callee([8 x i64] undef, ptr null, ptr %in)
12   ret void