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.
23 lines
437 B
23 lines
437 B
4 months ago
|
; RUN: opt < %s -instcombine -S | grep "%B = add i8 %b, %x"
|
||
|
; PR2698
|
||
|
|
||
|
declare void @use1(i1)
|
||
|
declare void @use8(i8)
|
||
|
|
||
|
define void @test1(i8 %a, i8 %b, i8 %x) {
|
||
|
%A = add i8 %a, %x
|
||
|
%B = add i8 %b, %x
|
||
|
%C = icmp eq i8 %A, %B
|
||
|
call void @use1(i1 %C)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
define void @test2(i8 %a, i8 %b, i8 %x) {
|
||
|
%A = add i8 %a, %x
|
||
|
%B = add i8 %b, %x
|
||
|
%C = icmp eq i8 %A, %B
|
||
|
call void @use1(i1 %C)
|
||
|
call void @use8(i8 %A)
|
||
|
ret void
|
||
|
}
|