1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/Transforms/InstCombine/2008-05-31-AddBool.ll
Matt Arsenault b86b388e15 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
}