Files
clang-p2996/llvm/test/Transforms/InstCombine/2008-05-31-AddBool.ll
Matt Arsenault 80ecd77303 Convert tests to FileCheck
llvm-svn: 189529
2013-08-28 23:04:41 +00:00

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
}