Merge "codeflinger: Correct misleading comment of STM instruction"

This commit is contained in:
Jean-Baptiste Queru 2010-11-23 10:52:14 -08:00 committed by Android Code Review
commit 4906db21e0
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ void ARMAssembler::LDM(int cc, int dir,
void ARMAssembler::STM(int cc, int dir,
int Rn, int W, uint32_t reg_list)
{ // FA EA FD ED IB IA DB DA
{ // ED FD EA FA IB IA DB DA
const uint8_t P[8] = { 0, 1, 0, 1, 1, 0, 1, 0 };
const uint8_t U[8] = { 0, 0, 1, 1, 1, 1, 0, 0 };
*mPC++ = (cc<<28) | (4<<25) | (uint32_t(P[dir])<<24) |