[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Object / mangle-ir.ll
blob76442f070385ecc4c3e94a6700bd8753dcfe32f6
1 ; RUN: llvm-as %s -o - | llvm-nm - | FileCheck %s
3 target datalayout = "m:o"
5 ; CHECK-NOT: memcpy
6 ; CHECK: T _f
7 ; CHECK-NOT: memcpy
9 define void @f() {
10   tail call void @llvm.memcpy.p0.p0.i64(ptr null, ptr null, i64 0, i1 false)
11   ret void
14 declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture readonly, i64, i1)