mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
8 lines
140 B
LLVM
8 lines
140 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {xor}
|
||
|
; PR2389
|
||
|
|
||
|
define i1 @test(i1 %a, i1 %b) {
|
||
|
%A = add i1 %a, %b
|
||
|
ret i1 %A
|
||
|
}
|