diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-12-15 16:53:24 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-12-15 16:53:24 +0000 |
commit | ed59d21912d94392c9b918d4895641c76a7b3da5 (patch) | |
tree | 9d564553b9efa5723846e38acf665fb912453346 /gdb/config | |
parent | 3e7ef95edd82f76caa300702d7ba01dcda21a53b (diff) | |
download | gdb-ed59d21912d94392c9b918d4895641c76a7b3da5.tar.gz |
LITTLE_ENDIAN -> BFD_ENDIAN_LITTLE
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/alpha/tm-alpha.h | 2 | ||||
-rw-r--r-- | gdb/config/arm/tm-arm.h | 2 | ||||
-rw-r--r-- | gdb/config/i386/tm-i386.h | 2 | ||||
-rw-r--r-- | gdb/config/i960/tm-i960.h | 2 | ||||
-rw-r--r-- | gdb/config/ia64/tm-ia64.h | 2 | ||||
-rw-r--r-- | gdb/config/mcore/tm-mcore.h | 2 | ||||
-rw-r--r-- | gdb/config/mips/tm-wince.h | 2 | ||||
-rw-r--r-- | gdb/config/mn10200/tm-mn10200.h | 2 | ||||
-rw-r--r-- | gdb/config/ns32k/tm-umax.h | 2 | ||||
-rw-r--r-- | gdb/config/powerpc/tm-ppcle-eabi.h | 2 | ||||
-rw-r--r-- | gdb/config/sh/tm-wince.h | 2 | ||||
-rw-r--r-- | gdb/config/v850/tm-v850.h | 2 | ||||
-rw-r--r-- | gdb/config/vax/tm-vax.h | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/gdb/config/alpha/tm-alpha.h b/gdb/config/alpha/tm-alpha.h index 60c0b80cf93..f5f349760fe 100644 --- a/gdb/config/alpha/tm-alpha.h +++ b/gdb/config/alpha/tm-alpha.h @@ -34,7 +34,7 @@ struct value; struct symbol; #if !defined (TARGET_BYTE_ORDER) -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE #endif /* Redefine some target bit sizes from the default. */ diff --git a/gdb/config/arm/tm-arm.h b/gdb/config/arm/tm-arm.h index e4271dae19e..3c1535022b0 100644 --- a/gdb/config/arm/tm-arm.h +++ b/gdb/config/arm/tm-arm.h @@ -32,7 +32,7 @@ struct value; /* Target byte order on ARM defaults to selectable, and defaults to little endian. */ #define TARGET_BYTE_ORDER_SELECTABLE_P 1 -#define TARGET_BYTE_ORDER_DEFAULT LITTLE_ENDIAN +#define TARGET_BYTE_ORDER_DEFAULT BFD_ENDIAN_LITTLE /* IEEE format floating point. */ #define IEEE_FLOAT (1) diff --git a/gdb/config/i386/tm-i386.h b/gdb/config/i386/tm-i386.h index 8407057ba37..d40a5f80e87 100644 --- a/gdb/config/i386/tm-i386.h +++ b/gdb/config/i386/tm-i386.h @@ -32,7 +32,7 @@ struct frame_saved_regs; struct value; struct type; -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE /* The format used for `long double' on almost all i386 targets is the i387 extended floating-point format. In fact, of all targets in the diff --git a/gdb/config/i960/tm-i960.h b/gdb/config/i960/tm-i960.h index f47b880e8a5..b6ed313456d 100644 --- a/gdb/config/i960/tm-i960.h +++ b/gdb/config/i960/tm-i960.h @@ -39,7 +39,7 @@ #define DBX_PARM_SYMBOL_CLASS(type) ((type == N_LSYM)? LOC_LOCAL_ARG: LOC_ARG) /* Byte order is configurable, but this machine runs little-endian. */ -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE /* We have IEEE floating point, if we have any float at all. */ diff --git a/gdb/config/ia64/tm-ia64.h b/gdb/config/ia64/tm-ia64.h index 326729f601d..37e4d72a34e 100644 --- a/gdb/config/ia64/tm-ia64.h +++ b/gdb/config/ia64/tm-ia64.h @@ -29,7 +29,7 @@ /* ia64 is little endian by default */ -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE /* Say how long (ordinary) registers are. This is a piece of bogosity used in push_word and a few other places; REGISTER_RAW_SIZE is the diff --git a/gdb/config/mcore/tm-mcore.h b/gdb/config/mcore/tm-mcore.h index 0fae6ac1f03..22631c00f24 100644 --- a/gdb/config/mcore/tm-mcore.h +++ b/gdb/config/mcore/tm-mcore.h @@ -21,7 +21,7 @@ #include "regcache.h" /* The mcore is little endian (by default) */ -#define TARGET_BYTE_ORDER_DEFAULT LITTLE_ENDIAN +#define TARGET_BYTE_ORDER_DEFAULT BFD_ENDIAN_LITTLE /* All registers are 32 bits */ #define REGISTER_SIZE 4 diff --git a/gdb/config/mips/tm-wince.h b/gdb/config/mips/tm-wince.h index 10e2eeb5d2b..737ccc60bc5 100644 --- a/gdb/config/mips/tm-wince.h +++ b/gdb/config/mips/tm-wince.h @@ -30,6 +30,6 @@ void wince_software_single_step (unsigned int, int); #undef TARGET_BYTE_ORDER_SELECTABLE -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE #endif /* TM_WINCE_H */ diff --git a/gdb/config/mn10200/tm-mn10200.h b/gdb/config/mn10200/tm-mn10200.h index 7018d5662c2..4d416c51921 100644 --- a/gdb/config/mn10200/tm-mn10200.h +++ b/gdb/config/mn10200/tm-mn10200.h @@ -26,7 +26,7 @@ #include "regcache.h" /* The mn10200 is little endian. */ -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE /* ints are only 16bits on the mn10200. */ #undef TARGET_INT_BIT diff --git a/gdb/config/ns32k/tm-umax.h b/gdb/config/ns32k/tm-umax.h index 5f9d2b985ea..9f1fb31eb24 100644 --- a/gdb/config/ns32k/tm-umax.h +++ b/gdb/config/ns32k/tm-umax.h @@ -23,7 +23,7 @@ /* This is also included by tm-ns32km3.h, as well as being used by umax. */ -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE /* Need to get function ends by adding this to epilogue address from .bf record, not using x_fsize field. */ diff --git a/gdb/config/powerpc/tm-ppcle-eabi.h b/gdb/config/powerpc/tm-ppcle-eabi.h index a6b16719cc6..1eb64701de0 100644 --- a/gdb/config/powerpc/tm-ppcle-eabi.h +++ b/gdb/config/powerpc/tm-ppcle-eabi.h @@ -26,6 +26,6 @@ #include "powerpc/tm-ppc-eabi.h" #undef TARGET_BYTE_ORDER_DEFAULT -#define TARGET_BYTE_ORDER_DEFAULT LITTLE_ENDIAN +#define TARGET_BYTE_ORDER_DEFAULT BFD_ENDIAN_LITTLE #endif /* TM_PPCLE_EABI_H */ diff --git a/gdb/config/sh/tm-wince.h b/gdb/config/sh/tm-wince.h index 4c4869af7a3..ddebbd2714e 100644 --- a/gdb/config/sh/tm-wince.h +++ b/gdb/config/sh/tm-wince.h @@ -29,6 +29,6 @@ #define SOFTWARE_SINGLE_STEP(sig, bp_p) wince_software_single_step (sig, bp_p) void wince_software_single_step (unsigned int, int); #undef TARGET_BYTE_ORDER_SELECTABLE -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE #endif /* TM_WINCE_H */ diff --git a/gdb/config/v850/tm-v850.h b/gdb/config/v850/tm-v850.h index 83e755edaaa..69f8491ad2f 100644 --- a/gdb/config/v850/tm-v850.h +++ b/gdb/config/v850/tm-v850.h @@ -21,7 +21,7 @@ #include "regcache.h" -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE #define NUM_REGS 66 diff --git a/gdb/config/vax/tm-vax.h b/gdb/config/vax/tm-vax.h index 867844bc7c6..65f8d7048ea 100644 --- a/gdb/config/vax/tm-vax.h +++ b/gdb/config/vax/tm-vax.h @@ -21,7 +21,7 @@ #include "regcache.h" -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +#define TARGET_BYTE_ORDER BFD_ENDIAN_LITTLE /* Offset from address of function to start of its code. Zero on most machines. */ |