Files
clang-p2996/llvm/test/Transforms/InstSimplify/ConstProp/binop-identity-undef.ll
Arthur Eubanks 486ed88533 [ConstProp] Remove ConstantPropagation
As discussed in
http://lists.llvm.org/pipermail/llvm-dev/2020-July/143801.html.

Currently no users outside of unit tests.

Replace all instances in tests of -constprop with -instsimplify.
Notable changes in tests:
* vscale.ll - @llvm.sadd.sat.nxv16i8 is evaluated by instsimplify, use a fake intrinsic instead
* InsertElement.ll - insertelement undef is removed by instsimplify in @insertelement_undef
llvm/test/Transforms/ConstProp moved to llvm/test/Transforms/InstSimplify/ConstProp

Reviewed By: lattner, nikic

Differential Revision: https://reviews.llvm.org/D85159
2020-08-26 15:51:30 -07:00

51 lines
852 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -instsimplify -S %s | FileCheck %s
define i32 @and1() {
; CHECK-LABEL: @and1(
; CHECK-NEXT: ret i32 undef
;
%r = and i32 undef, -1
ret i32 %r
}
define i32 @and2() {
; CHECK-LABEL: @and2(
; CHECK-NEXT: ret i32 undef
;
%r = and i32 -1, undef
ret i32 %r
}
define i32 @and3_no_identity() {
; CHECK-LABEL: @and3_no_identity(
; CHECK-NEXT: ret i32 0
;
%r = and i32 10, undef
ret i32 %r
}
define i32 @or1() {
; CHECK-LABEL: @or1(
; CHECK-NEXT: ret i32 undef
;
%r = or i32 0, undef
ret i32 %r
}
define i32 @or2() {
; CHECK-LABEL: @or2(
; CHECK-NEXT: ret i32 undef
;
%r = or i32 undef, 0
ret i32 %r
}
define i32 @or3_no_identity() {
; CHECK-LABEL: @or3_no_identity(
; CHECK-NEXT: ret i32 -1
;
%r = or i32 undef, 10
ret i32 %r
}