1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-01 00:33:09 +00:00
llvm-6502/test/Transforms/InstSimplify/2010-12-20-I1Arithmetic.ll

23 lines
333 B
LLVM
Raw Normal View History

; RUN: opt < %s -instsimplify -S | FileCheck %s
define i1 @add(i1 %x) {
; CHECK: @add
%z = add i1 %x, %x
ret i1 %z
; CHECK: ret i1 false
}
define i1 @sub(i1 %x) {
; CHECK: @sub
%z = sub i1 false, %x
ret i1 %z
; CHECK: ret i1 %x
}
define i1 @mul(i1 %x) {
; CHECK: @mul
%z = mul i1 %x, %x
ret i1 %z
; CHECK: ret i1 %x
}