summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/compare-add.ll
blob: 358ee59c95a5151140b0e2f2d8d4ddab0e5eb5ad (plain)
1
2
3
4
5
6
7
8
; RUN: llc < %s -march=x86 | not grep add

define i1 @X(i32 %X) {
        %Y = add i32 %X, 14             ; <i32> [#uses=1]
        %Z = icmp ne i32 %Y, 12345              ; <i1> [#uses=1]
        ret i1 %Z
}