From 6aca16cc32a626c863ea73e392afc59b88b89edf Mon Sep 17 00:00:00 2001 From: zakk Date: Sun, 28 Aug 2005 03:46:44 +0000 Subject: Patching from floam with some edits by myself: I was working on a patch earlier to fix some more things up to be more modern, and I added a couple lines from that cleanup patch I showed you on irc. Some commented code was removed, some stuff was made to not be broke (old head usage), the makefile should install things better, and a a few GCC warnings were gagged. I also attempted to version it but you'll probably want to change that to whatever versioning rules you decide on using. git-svn-id: svn://svn.icculus.org/quake3/trunk@13 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/vm_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code/qcommon/vm_x86.c') diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c index f9b0982..04abce9 100755 --- a/code/qcommon/vm_x86.c +++ b/code/qcommon/vm_x86.c @@ -1168,7 +1168,7 @@ int VM_CallCompiled( vm_t *vm, int *args ) { " movl %%edi,%1 \r\n" \ " popal \r\n" \ : "=m" (memProgramStack), "=m" (memOpStack) \ - : "m" (memEntryPoint), "0" (memProgramStack), "1" (memOpStack) \ + : "m" (memEntryPoint), "m" (memProgramStack), "m" (memOpStack) \ : "si", "di" \ ); -- cgit v1.2.3