view test/CodeGen/PowerPC/inverted-bool-compares.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 1172e4bd9c6f
line wrap: on
line source

; RUN: llc < %s -march=ppc32 | not grep xori

define i32 @test(i1 %B, i32* %P) {
        br i1 %B, label %T, label %F

T:              ; preds = %0
        store i32 123, i32* %P
        ret i32 0

F:              ; preds = %0
        ret i32 17
}