Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed inline assembly warning for PPC
Browse files Browse the repository at this point in the history
input constraint with a matching output constraint of incompatible type
  • Loading branch information
slouken committed Jan 14, 2012
1 parent 24a658b commit 52565f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SDL_endian.h
Expand Up @@ -91,10 +91,10 @@ SDL_Swap16(Uint16 x)
static __inline__ Uint16
SDL_Swap16(Uint16 x)
{
Uint16 result;
int result;

__asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x));
return result;
return (Uint16)result;
}
#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__)
static __inline__ Uint16
Expand Down

0 comments on commit 52565f5

Please sign in to comment.