From 228e757e01d35bcd1465bd4b532ebdc5428e3b11 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Sat, 8 Jun 2002 18:18:48 +0000 Subject: [PATCH] * src/base/digitseq/cl_asm.h: ensure intCsize==16 when including m68k Assembler routines. * src/base/digitseq/cl_asm_.cc: Likewise. --- ChangeLog | 6 ++++++ src/base/digitseq/cl_asm.h | 6 +++--- src/base/digitseq/cl_asm_.cc | 10 +++++----- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 78c06dc..e649984 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-08 Richard Kreckel + + * src/base/digitseq/cl_asm.h: ensure intCsize==16 when including + m68k Assembler routines. + * src/base/digitseq/cl_asm_.cc: Likewise. + 2002-05-28 Richard Kreckel * Version 1.1.5 released. diff --git a/src/base/digitseq/cl_asm.h b/src/base/digitseq/cl_asm.h index 68a109d..2bf9b95 100644 --- a/src/base/digitseq/cl_asm.h +++ b/src/base/digitseq/cl_asm.h @@ -5,7 +5,7 @@ #ifndef NO_ASM -#ifdef __m68k__ +#if defined(__m68k__) && (intCsize==16) #include "cl_asm_m68k.h" #endif @@ -17,7 +17,7 @@ #include "cl_asm_sparc64.h" #endif -#ifdef __i386__ +#if defined(__i386__) #include "cl_asm_i386.h" #endif @@ -29,7 +29,7 @@ #include "cl_asm_hppa.h" #endif -#ifdef __arm__ +#if defined(__arm__) #include "cl_asm_arm.h" #endif diff --git a/src/base/digitseq/cl_asm_.cc b/src/base/digitseq/cl_asm_.cc index a0ed0d5..9b5b417 100644 --- a/src/base/digitseq/cl_asm_.cc +++ b/src/base/digitseq/cl_asm_.cc @@ -5,7 +5,7 @@ #ifndef NO_ASM -#ifdef __m68k__ +#if defined(__m68k__) && (intCsize==16) #include "cl_asm_m68k_.cc" #endif @@ -17,19 +17,19 @@ #include "cl_asm_sparc64_.cc" #endif -#ifdef __i386__ +#if defined(__i386__) #include "cl_asm_i386_.cc" #endif -#ifdef __mips__ +#if defined(__mips__) #include "cl_asm_mips_.cc" #endif -#ifdef __hppa__ +#if defined(__hppa__) #include "cl_asm_hppa_.cc" #endif -#ifdef __arm__ +#if defined(__arm__) #include "cl_asm_arm_.cc" #endif -- 2.45.0