mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
69ba87e018
Phabricator: http://reviews.llvm.org/D11359 Patch by Geoff Berry <gberry@codeaurora.org> llvm-svn: 242694
30 lines
637 B
LLVM
30 lines
637 B
LLVM
; RUN: llc -mtriple=aarch64-none-linux-gnu < %s | FileCheck %s
|
|
|
|
; Check that the eon instruction is generated instead of eor,movn
|
|
define i64 @test1(i64 %a, i64 %b, i64 %c) {
|
|
; CHECK-LABEL: test1:
|
|
; CHECK: eon
|
|
; CHECK: ret
|
|
entry:
|
|
%shl = shl i64 %b, 4
|
|
%neg = xor i64 %a, -1
|
|
%xor = xor i64 %shl, %neg
|
|
ret i64 %xor
|
|
}
|
|
|
|
; Same check with mutliple uses of %neg
|
|
define i64 @test2(i64 %a, i64 %b, i64 %c) {
|
|
; CHECK-LABEL: test2:
|
|
; CHECK: eon
|
|
; CHECK: eon
|
|
; CHECK: lsl
|
|
; CHECK: ret
|
|
entry:
|
|
%shl = shl i64 %b, 4
|
|
%neg = xor i64 %shl, -1
|
|
%xor = xor i64 %neg, %a
|
|
%xor1 = xor i64 %c, %neg
|
|
%shl2 = shl i64 %xor, %xor1
|
|
ret i64 %shl2
|
|
}
|