llvm-6502/test/Transforms/InstCombine/2002-12-05-MissedConstProp.ll

14 lines
272 B
LLVM
Raw Normal View History

; RUN: if as < %s | opt -instcombine | dis | grep add
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
int %test(int %A) {
%A.neg = sub int 0, %A
%.neg = sub int 0, 1
%X = add int %.neg, 1
%Y.neg.ra = add int %A, %X
%r = add int %A.neg, %Y.neg.ra
ret int %r
}