19 lines · plain
1; RUN: llc -O0 -fast-isel -mtriple=arm64-apple-ios7.0 -mcpu=generic < %s | FileCheck %s2 3; Function Attrs: nounwind ssp4define void @test1() {5 %1 = sext i32 0 to i1286 call void @test2(i128 %1)7 ret void8 9; The i128 is 0 so the we can test to make sure it is propagated into the x10; registers that make up the i128 pair11 12; CHECK: mov x0, xzr13; CHECK: mov x1, x014; CHECK: bl _test215 16}17 18declare void @test2(i128)19