[llvm-commits] [llvm] r125466 - /llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h

Chris Lattner sabre at nondot.org
Sun Feb 13 11:53:36 PST 2011


Author: lattner
Date: Sun Feb 13 13:53:36 2011
New Revision: 125466

URL: http://llvm.org/viewvc/llvm-project?rev=125466&view=rev
Log:
fix thinko :)

Modified:
    llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h

Modified: llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h?rev=125466&r1=125465&r2=125466&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h Sun Feb 13 13:53:36 2011
@@ -311,8 +311,8 @@
     /// 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,
 





More information about the llvm-commits mailing list