From 939affc67d4534c75d240180575dd9484ae8c691 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Wed, 18 May 2022 13:24:20 +0100 Subject: [PATCH] [AArch64] neon-vmull-high-p64.ll - fix name/check mismatch identified in D125604 Typos meant that we weren't actually checking the function name, which wasn't accounting for mangling --- llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll b/llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll index 6b0ac9c..ddd8515 100644 --- a/llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll +++ b/llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll @@ -38,13 +38,13 @@ ; } -;CHECK_LABEL: func: +;CHECK-LABEL: func: ;CHECK: pmull2 %struct.SS = type { <2 x i64>, <2 x i64> } ; Function Attrs: nofree noinline nounwind -define dso_local void @_Z4funcP2SSjPKhPo(%struct.SS* nocapture readonly %g, i32 %count, i8* nocapture readonly %buf, i128* nocapture %res) local_unnamed_addr #0 { +define dso_local void @func(%struct.SS* nocapture readonly %g, i32 %count, i8* nocapture readonly %buf, i128* nocapture %res) local_unnamed_addr #0 { entry: %h2 = getelementptr inbounds %struct.SS, %struct.SS* %g, i64 0, i32 1 %0 = load <2 x i64>, <2 x i64>* %h2, align 16 -- 2.7.4