• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt < %s -sccp -S | FileCheck %s
3
4define i1 @foo() {
5; CHECK-LABEL: @foo(
6; CHECK-NEXT:    [[X:%.*]] = and i1 false, undef
7; CHECK-NEXT:    ret i1 [[X]]
8;
9  %X = and i1 false, undef		; <i1> [#uses=1]
10  ret i1 %X
11}
12
13