1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/2004-08-10-BoolSetCC.ll
2004-08-11 00:49:50 +00:00

7 lines
138 B
LLVM

; RUN: llvm-as < %s| opt -instcombine | llvm-dis | grep 'ret bool false'
bool %test(bool %V) {
%Y = setlt bool %V, false
ret bool %Y
}