]> git.pld-linux.org Git - packages/SDL.git/blob - SDL-gcc-pr21398-workaround.patch
- quick workaround for gcc PR21398.
[packages/SDL.git] / SDL-gcc-pr21398-workaround.patch
1 --- SDL-1.2.8/include/SDL_endian.h.orig 2004-12-13 08:54:30.000000000 +0100
2 +++ SDL-1.2.8/include/SDL_endian.h      2005-05-05 15:50:48.600521264 +0200
3 @@ -68,7 +68,10 @@
4  #elif defined(__GNUC__) && defined(__x86_64__)
5  static __inline__ Uint16 SDL_Swap16(Uint16 x)
6  {
7 +/*
8         __asm__("xchgb %b0,%h0" : "=q" (x) :  "0" (x));
9 +*/
10 +       __asm__("xchgb %b0,%h0" : "=q" (x) :  "a" (x));
11         return x;
12  }
13  #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
This page took 0.117043 seconds and 3 git commands to generate.