You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: opt < %s -instcombine -S | not grep i41
|
|
|
|
define i61 @test1(i61 %X) {
|
|
%Y = trunc i61 %X to i41 ;; Turn i61o an AND
|
|
%Z = zext i41 %Y to i61
|
|
ret i61 %Z
|
|
}
|
|
|