fix thinko :)

llvm-svn: 125466
This commit is contained in:
Chris Lattner 2011-02-13 19:53:36 +00:00
parent e95d195014
commit 3466ca34bc
1 changed files with 2 additions and 2 deletions

View 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,