fix thinko :)
authorChris Lattner <sabre@nondot.org>
Sun, 13 Feb 2011 19:53:36 +0000 (19:53 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 13 Feb 2011 19:53:36 +0000 (19:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125466 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/ISDOpcodes.h

index 8ace6c4e490840dda3a5a194f6df7a3dd95d3d7c..3da11c4a0e0fd9d0545ce558af8ea324a6d76702 100644 (file)
@@ -311,8 +311,8 @@ namespace ISD {
     /// the shift amount can be any type, but care must be taken to ensure it is
     /// large enough.  TLI.getShiftAmountTy() is i8 on some targets, but before
     /// legalization, types like i1024 can occur and i8 doesn't have enough bits
-    /// to represent the shift amount.  By convention, DAGCombine and IRBuilder
-    /// forces these shift amounts to i32 for simplicity.
+    /// to represent the shift amount.  By convention, DAGCombine and
+    /// SelectionDAGBuilder forces these shift amounts to i32 for simplicity.
     ///
     SHL, SRA, SRL, ROTL, ROTR,