forked from OSchip/llvm-project
Fix off-by-one error in traversing an array; this fixes a test.
The error was reported by gcc-4.3.0 during compilation. llvm-svn: 61896
This commit is contained in:
parent
6aa83bd459
commit
b51cdfadda
|
|
@ -678,7 +678,7 @@ SPUInstrInfo::ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond)
|
||||||
|
|
||||||
unsigned Opc = unsigned(Cond[0].getImm());
|
unsigned Opc = unsigned(Cond[0].getImm());
|
||||||
// Pretty dull mapping between the two conditions that SPU can generate:
|
// Pretty dull mapping between the two conditions that SPU can generate:
|
||||||
for (int i = sizeof(revconds)/sizeof(revconds[0]); i >= 0; --i) {
|
for (int i = sizeof(revconds)/sizeof(revconds[0]) - 1; i >= 0; --i) {
|
||||||
if (revconds[i].Opc == Opc) {
|
if (revconds[i].Opc == Opc) {
|
||||||
Cond[0].setImm(revconds[i].RevCondOpc);
|
Cond[0].setImm(revconds[i].RevCondOpc);
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,6 @@
|
||||||
; RUN: grep -w rotqbybi %t1.s | count 1
|
; RUN: grep -w rotqbybi %t1.s | count 1
|
||||||
; RUN: grep -w sfi %t1.s | count 3
|
; RUN: grep -w sfi %t1.s | count 3
|
||||||
|
|
||||||
; XFAIL: alpha|linux|sparc|ia64|arm
|
|
||||||
|
|
||||||
target datalayout = "E-p:32:32:128-f64:64:128-f32:32:128-i64:32:128-i32:32:128-i16:16:128-i8:8:128-i1:8:128-a0:0:128-v128:128:128-s0:128:128"
|
target datalayout = "E-p:32:32:128-f64:64:128-f32:32:128-i64:32:128-i32:32:128-i16:16:128-i8:8:128-i1:8:128-a0:0:128-v128:128:128-s0:128:128"
|
||||||
target triple = "spu"
|
target triple = "spu"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue