1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/InstSimplify/2010-12-20-Boolean.ll
Duncan Sands 01be7e406d Rename this test.
llvm-svn: 123440
2011-01-14 14:16:33 +00:00

30 lines
427 B
LLVM

; 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
}
define i1 @ne(i1 %x) {
; CHECK: @ne
%z = icmp ne i1 %x, 0
ret i1 %z
; CHECK: ret i1 %x
}