1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00
llvm-mirror/test/Transforms/InstSimplify/2010-12-20-Boolean.ll
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

35 lines
563 B
LLVM

; NOTE: Assertions have been autogenerated by update_test_checks.py
; RUN: opt < %s -instsimplify -S | FileCheck %s
define i1 @add(i1 %x) {
; CHECK-LABEL: @add(
; CHECK: ret i1 false
;
%z = add i1 %x, %x
ret i1 %z
}
define i1 @sub(i1 %x) {
; CHECK-LABEL: @sub(
; CHECK: ret i1 %x
;
%z = sub i1 false, %x
ret i1 %z
}
define i1 @mul(i1 %x) {
; CHECK-LABEL: @mul(
; CHECK: ret i1 %x
;
%z = mul i1 %x, %x
ret i1 %z
}
define i1 @ne(i1 %x) {
; CHECK-LABEL: @ne(
; CHECK: ret i1 %x
;
%z = icmp ne i1 %x, 0
ret i1 %z
}