[llvm] 939affc - [AArch64] neon-vmull-high-p64.ll - fix name/check mismatch identified in D125604
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed May 18 05:24:37 PDT 2022
Author: Simon Pilgrim
Date: 2022-05-18T13:24:28+01:00
New Revision: 939affc67d4534c75d240180575dd9484ae8c691
URL: https://github.com/llvm/llvm-project/commit/939affc67d4534c75d240180575dd9484ae8c691
DIFF: https://github.com/llvm/llvm-project/commit/939affc67d4534c75d240180575dd9484ae8c691.diff
LOG: [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
Added:
Modified:
llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll b/llvm/test/CodeGen/AArch64/neon-vmull-high-p64.ll
index 6b0ac9cc579f..ddd851510497 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
More information about the llvm-commits
mailing list