llvm-for-llvmta/test/Transforms/SCCP/2006-12-19-UndefBug.ll

13 lines
296 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -sccp -S | FileCheck %s
define i1 @foo() {
; CHECK-LABEL: @foo(
; CHECK-NEXT: [[X:%.*]] = and i1 false, undef
; CHECK-NEXT: ret i1 [[X]]
;
%X = and i1 false, undef ; <i1> [#uses=1]
ret i1 %X
}