summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/SPARC/xnor.ll
blob: 6ff66bd6fcc673de8e965c0e0e39a8db2867dbb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc < %s -march=sparc | \
; RUN:   grep xnor | count 2

define i32 @test1(i32 %X, i32 %Y) {
        %A = xor i32 %X, %Y             ; <i32> [#uses=1]
        %B = xor i32 %A, -1             ; <i32> [#uses=1]
        ret i32 %B
}

define i32 @test2(i32 %X, i32 %Y) {
        %A = xor i32 %X, -1             ; <i32> [#uses=1]
        %B = xor i32 %A, %Y             ; <i32> [#uses=1]
        ret i32 %B
}

OpenPOWER on IntegriCloud