Fix typo in comment, spotted by Deewiant.

llvm-svn: 122329
This commit is contained in:
Duncan Sands 2010-12-21 13:39:20 +00:00
parent ee3ec6eb94
commit 07c17132d7
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
define i32 @factorize(i32 %x, i32 %y) {
; CHECK: @factorize
; (X | 2) & (X | 2) -> X | (1 & 2) -> X
; (X | 1) & (X | 2) -> X | (1 & 2) -> X
%l = or i32 %x, 1
%r = or i32 %x, 2
%z = and i32 %l, %r