2007-04-15 21:17:45 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep rlwimi
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep {or }
|
2005-09-09 17:48:57 +00:00
|
|
|
|
|
|
|
; 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
|
|
|
|
}
|