mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
b86b388e15
llvm-svn: 189529
10 lines
138 B
LLVM
10 lines
138 B
LLVM
; 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
|
|
}
|