mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-22 18:00:28 +00:00
Fix a code alignment warning.
I'm not really clear on why this code would not be 4 byte aligned, but cmake says it ain't on iOS, so okay.
This commit is contained in:
parent
79864a5ee0
commit
d8e9ed73ab
@ -69,6 +69,8 @@ static u32 QuickTexHashBasic(const void *checkp, u32 size) {
|
||||
"add %1, %1, %2\n"
|
||||
"mov r6, #0\n"
|
||||
|
||||
".align 2\n"
|
||||
|
||||
// If we have zero sized input, we'll return garbage. Oh well, shouldn't happen.
|
||||
"QuickTexHashBasic_next:\n"
|
||||
"ldmia %2!, {r2-r5}\n"
|
||||
@ -79,6 +81,8 @@ static u32 QuickTexHashBasic(const void *checkp, u32 size) {
|
||||
"eor r6, r6, r5\n"
|
||||
"blo QuickTexHashBasic_next\n"
|
||||
|
||||
".align 2\n"
|
||||
|
||||
"QuickTexHashBasic_done:\n"
|
||||
"mov %0, r6\n"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user