You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using last ps3toolchain (gcc 7.2).
PowerPC / PowerPC64 / RS6000
GCC now diagnoses inline assembly that clobbers register r2. This has always been invalid code, and is no longer quietly tolerated.
This could help:
#if GNUC >= 7
: "r31", "r0", "lr"
#else
: "r31", "r0", "r1", "r2", "lr"
#endif
The text was updated successfully, but these errors were encountered:
Using last ps3toolchain (gcc 7.2).
PowerPC / PowerPC64 / RS6000
GCC now diagnoses inline assembly that clobbers register r2. This has always been invalid code, and is no longer quietly tolerated.
This could help:
#if GNUC >= 7
: "r31", "r0", "lr"
#else
: "r31", "r0", "r1", "r2", "lr"
#endif
The text was updated successfully, but these errors were encountered: