mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
88c66b1027
llvm-svn: 48529
9 lines
154 B
LLVM
9 lines
154 B
LLVM
; RUN: llvm-as < %s | opt -sccp | llvm-dis | \
|
|
; RUN: grep {ret i1 false}
|
|
|
|
define i1 @foo() {
|
|
%X = and i1 false, undef ; <i1> [#uses=1]
|
|
ret i1 %X
|
|
}
|
|
|