[Transforms] Silence a warning in SROA.cpp (NFC)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / i128-fast-isel-fallback.ll
blob03e296c2b9aa3c501fa5e2d2e221437a6d450708
1 ; RUN: llc -O0 -fast-isel -mtriple=arm64-apple-ios7.0 -mcpu=generic < %s | FileCheck %s
3 ; Function Attrs: nounwind ssp
4 define void @test1() {
5   %1 = sext i32 0 to i128
6   call void  @test2(i128 %1)
7   ret void
9 ; The i128 is 0 so the we can test to make sure it is propagated into the x
10 ; registers that make up the i128 pair
12 ; CHECK:  mov  x0, xzr
13 ; CHECK:  mov  x1, x0
14 ; CHECK:  bl  _test2
18 declare void @test2(i128)