Fix comments
authorChris Lattner <sabre@nondot.org>
Wed, 22 Mar 2006 20:09:04 +0000 (20:09 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 22 Mar 2006 20:09:04 +0000 (20:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26960 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAGNodes.h

index 70e4f33840904c6ac9ea8fd386b7683c4f1ec5a4..5026d038b16e4eaf6ce3a436dadf23a86ce3740d 100644 (file)
@@ -181,10 +181,11 @@ namespace ISD {
     ///
     /// This is lowered to a BIT_CONVERT of the appropriate input/output types.
     /// The input and output are required to have the same size and at least one
-    /// is required to be a vector.
+    /// is required to be a vector (if neither is a vector, just use
+    /// BIT_CONVERT).
     ///
-    /// If the source is a vector, this takes three operands (like any other
-    /// vector consumer) which indicate the size and type of the vector input.
+    /// If the result is a vector, this takes three operands (like any other
+    /// vector producer) which indicate the size and type of the vector result.
     /// Otherwise it takes one input.
     VBIT_CONVERT,