From af49fe0b2c180a5b717111c2443891b19b375789 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. llvm-svn: 313368 --- 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)