From ec92457d680bea51cbdacc488c4734b68b184c5d Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Fri, 20 Sep 2002 14:55:50 +0000 Subject: [PATCH] Fix align_jumps for athlon, that's really "16" and gcc-3.2 sources contained the same error. ;-) --- BasiliskII/src/uae_cpu/compiler/codegen_x86.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/uae_cpu/compiler/codegen_x86.cpp b/BasiliskII/src/uae_cpu/compiler/codegen_x86.cpp index d5822417..e93efb0d 100644 --- a/BasiliskII/src/uae_cpu/compiler/codegen_x86.cpp +++ b/BasiliskII/src/uae_cpu/compiler/codegen_x86.cpp @@ -2403,7 +2403,7 @@ x86_alignments[X86_PROCESSOR_max] = { { 16, 7, 16, 7, 16 }, { 16, 15, 16, 7, 16 }, { 32, 7, 32, 7, 32 }, - { 16, 7, 64, 7, 16 }, + { 16, 7, 16, 7, 16 }, { 0, 0, 0, 0, 0 } };