view test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll @ 83:60c9769439b8 LLVM3.7

LLVM 3.7
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Wed, 18 Feb 2015 14:55:36 +0900
parents 95c75e76d11b
children
line wrap: on
line source

; RUN: opt < %s -instcombine -S | \
; RUN:    grep "ret i1 false"

define i1 @test(i1 %V) {
        %Y = icmp ult i1 %V, false              ; <i1> [#uses=1]
        ret i1 %Y
}