mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 13:51:37 +00:00
c95df8b6d8
llvm-svn: 81257
9 lines
134 B
LLVM
9 lines
134 B
LLVM
; RUN: opt %s -sccp -S | \
|
|
; RUN: grep {ret i1 false}
|
|
|
|
define i1 @foo() {
|
|
%X = and i1 false, undef ; <i1> [#uses=1]
|
|
ret i1 %X
|
|
}
|
|
|