From 8879f2a5be8e6ac9a0e1fce2a1f67a466bbdd776 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Fri, 15 Sep 2017 17:28:07 +0000 Subject: [PATCH] Fix typo in vector reduction costs comment. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313368 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/TargetTransformInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/TargetTransformInfo.h b/include/llvm/Analysis/TargetTransformInfo.h index dbf95a716ed..e1fd8b92168 100644 --- a/include/llvm/Analysis/TargetTransformInfo.h +++ b/include/llvm/Analysis/TargetTransformInfo.h @@ -764,7 +764,7 @@ public: /// /// Pairwise: /// (v0, v1, v2, v3) - /// ((v0+v1), (v2, v3), undef, undef) + /// ((v0+v1), (v2+v3), undef, undef) /// Split: /// (v0, v1, v2, v3) /// ((v0+v2), (v1+v3), undef, undef) -- 2.50.0