forked from OSchip/llvm-project
Fix typo in comment, spotted by Deewiant.
llvm-svn: 122329
This commit is contained in:
parent
ee3ec6eb94
commit
07c17132d7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue