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.
9 lines
183 B
9 lines
183 B
4 months ago
|
; 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
|
||
|
}
|
||
|
|