[llvm-commits] [llvm] r133062 - /llvm/trunk/test/CodeGen/X86/shl_undef.ll

Chad Rosier mcrosier at apple.com
Wed Jun 15 09:48:03 PDT 2011


Author: mcrosier
Date: Wed Jun 15 11:48:02 2011
New Revision: 133062

URL: http://llvm.org/viewvc/llvm-project?rev=133062&view=rev
Log:
TargetLoweringOpt is a struct used by DAGCombine, not a pass.

Modified:
    llvm/trunk/test/CodeGen/X86/shl_undef.ll

Modified: llvm/trunk/test/CodeGen/X86/shl_undef.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/shl_undef.ll?rev=133062&r1=133061&r2=133062&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/shl_undef.ll (original)
+++ llvm/trunk/test/CodeGen/X86/shl_undef.ll Wed Jun 15 11:48:02 2011
@@ -2,7 +2,7 @@
 ;
 ; Interesting test case where %tmp1220 = xor i32 %tmp862, %tmp592 and
 ; %tmp1676 = xor i32 %tmp1634, %tmp1530 have zero demanded bits after
-; TargetLoweringOpt pass.  These are changed to undef and in turn
+; DAGCombiner optimization pass.  These are changed to undef and in turn
 ; the successor shl(s) become shl undef, 1.  This pattern then matches
 ; shl x, 1 -> add x, x.  add undef, undef doesn't guarentee the low
 ; order bit is zero and is incorrect.





More information about the llvm-commits mailing list