Skip to content

Commit

Permalink
[ConstantFold] Add some tests for binops with constants and undefs.
Browse files Browse the repository at this point in the history
Precommit tests for D70169.
  • Loading branch information
fhahn committed Nov 17, 2019
1 parent a516fba commit 28c1838
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions llvm/test/Analysis/ConstantFolding/binop-identity-undef.ll
@@ -0,0 +1,50 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -constprop -S %s | FileCheck %s

define i32 @and1() {
; CHECK-LABEL: @and1(
; CHECK-NEXT: ret i32 0
;
%r = and i32 undef, -1
ret i32 %r
}

define i32 @and2() {
; CHECK-LABEL: @and2(
; CHECK-NEXT: ret i32 0
;
%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 -1
;
%r = or i32 0, undef
ret i32 %r
}

define i32 @or2() {
; CHECK-LABEL: @or2(
; CHECK-NEXT: ret i32 -1
;
%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
}

0 comments on commit 28c1838

Please sign in to comment.