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 | FileCheck %s
|
|
; PR2389
|
|
|
|
; CHECK: xor
|
|
|
|
define i1 @test(i1 %a, i1 %b) {
|
|
%A = add i1 %a, %b
|
|
ret i1 %A
|
|
}
|