mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-07 04:38:20 +00:00
New testcase, neither should require a register-register copy
llvm-svn: 23290
This commit is contained in:
parent
ada7ac14a1
commit
491dda08c5
26
test/Regression/CodeGen/PowerPC/rlwimi-commute.ll
Normal file
26
test/Regression/CodeGen/PowerPC/rlwimi-commute.ll
Normal file
@ -0,0 +1,26 @@
|
||||
; RUN: llvm-as < %s | llc -march=ppc32 | grep rlwimi &&
|
||||
; RUN: llvm-as < %s | llc -march=ppc32 | not grep 'or '
|
||||
|
||||
; Make sure there is no register-register copies here.
|
||||
|
||||
void %test1(int *%A, int *%B, int *%D, int* %E) {
|
||||
%A = load int* %A
|
||||
%B = load int* %B
|
||||
%X = and int %A, 15
|
||||
%Y = and int %B, -16
|
||||
%Z = or int %X, %Y
|
||||
store int %Z, int* %D
|
||||
store int %A, int* %E
|
||||
ret void
|
||||
}
|
||||
|
||||
void %test2(int *%A, int *%B, int *%D, int* %E) {
|
||||
%A = load int* %A
|
||||
%B = load int* %B
|
||||
%X = and int %A, 15
|
||||
%Y = and int %B, -16
|
||||
%Z = or int %X, %Y
|
||||
store int %Z, int* %D
|
||||
store int %B, int* %E
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user