Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / memcpy-f128.ll
blob5b354dd23e01dfac40d3ececd83000efb83db6f4
1 ; RUN: llc < %s -mtriple=aarch64-linux-gnu | FileCheck %s
3 %structA = type { i128 }
4 @stubA = internal unnamed_addr constant %structA zeroinitializer, align 8
6 ; Make sure we don't hit llvm_unreachable.
8 define void @test1() {
9 ; CHECK-LABEL: @test1
10 ; CHECK: ret
11 entry:
12   tail call void @llvm.memcpy.p0.p0.i64(ptr align 8 undef, ptr align 8 @stubA, i64 48, i1 false)
13   ret void
16 declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture readonly, i64, i1)