summaryrefslogtreecommitdiffstats
path: root/libpixelflinger
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2010-11-23 10:52:14 -0800
committerAndroid Code Review <code-review@android.com>2010-11-23 10:52:14 -0800
commit4906db21e041327042b87122b233e1f150618334 (patch)
tree02c39bf2ba67ddd36868e39ec8caddb785b78f31 /libpixelflinger
parentf2ff2112309d03674b88433276a57500b723fa9e (diff)
parenta7e96642a9f91620b69716cc3198c6ebb4d0553c (diff)
downloadsystem_core-4906db21e041327042b87122b233e1f150618334.zip
system_core-4906db21e041327042b87122b233e1f150618334.tar.gz
system_core-4906db21e041327042b87122b233e1f150618334.tar.bz2
Merge "codeflinger: Correct misleading comment of STM instruction"
Diffstat (limited to 'libpixelflinger')
-rw-r--r--libpixelflinger/codeflinger/ARMAssembler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpixelflinger/codeflinger/ARMAssembler.cpp b/libpixelflinger/codeflinger/ARMAssembler.cpp
index fa9f1ad..4726a08 100644
--- a/libpixelflinger/codeflinger/ARMAssembler.cpp
+++ b/libpixelflinger/codeflinger/ARMAssembler.cpp
@@ -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) |