Mercurial > hg > CbC > CbC_llvm
view test/Transforms/InstCombine/2009-01-31-Pressure.ll @ 121:803732b1fca8
LLVM 5.0
author | kono |
---|---|
date | Fri, 27 Oct 2017 17:07:41 +0900 |
parents | 95c75e76d11b |
children |
line wrap: on
line source
; RUN: opt < %s -instcombine -S | grep "%B = add i8 %b, %x" ; PR2698 declare void @use1(i1) declare void @use8(i8) define void @test1(i8 %a, i8 %b, i8 %x) { %A = add i8 %a, %x %B = add i8 %b, %x %C = icmp eq i8 %A, %B call void @use1(i1 %C) ret void } define void @test2(i8 %a, i8 %b, i8 %x) { %A = add i8 %a, %x %B = add i8 %b, %x %C = icmp eq i8 %A, %B call void @use1(i1 %C) call void @use8(i8 %A) ret void }