[VPlan] Fix comment for User in VPWidenSelectRecipe (NFC).
authorFlorian Hahn <flo@fhahn.com>
Tue, 19 May 2020 14:29:40 +0000 (15:29 +0100)
committerFlorian Hahn <flo@fhahn.com>
Tue, 19 May 2020 14:31:39 +0000 (15:31 +0100)
The comment was referring the arguments of the call, but the recipe
widens a select.

llvm/lib/Transforms/Vectorize/VPlan.h

index f575df9..a9da0af 100644 (file)
@@ -826,7 +826,7 @@ private:
   /// Is the condition of the select loop invariant?
   bool InvariantCond;
 
-  /// Hold VPValues for the arguments of the call.
+  /// Hold VPValues for the operands of the select.
   VPUser User;
 
 public: