Mercurial > sdl-ios-xcode
changeset 627:8b9ac38381d0
Fixed compile problem in SDL_stretch.c with gcc 3.3
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 29 May 2003 04:25:29 +0000 |
parents | b98f732b4322 |
children | e561e8752d33 |
files | src/video/SDL_stretch.c |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/SDL_stretch.c Thu May 29 04:23:03 2003 +0000 +++ b/src/video/SDL_stretch.c Thu May 29 04:25:29 2003 +0000 @@ -261,9 +261,8 @@ break; default: #ifdef __GNUC__ - __asm__ __volatile__ (" - call _copy_row - " + __asm__ __volatile__ ( + "call _copy_row" : "=&D" (u1), "=&S" (u2) : "0" (dstp), "1" (srcp) : "memory" );