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 | 778eb05eacb13ba46d6b60d9157fcc32db8433a2 (patch) | |
tree | 2b66c1e99b806a1f85109d0c20fee47368448f96 /gdb/config | |
parent | 5b6a02bcf409bfba5fafa2e71d2296e2429de038 (diff) | |
download | gdb-778eb05eacb13ba46d6b60d9157fcc32db8433a2.zip gdb-778eb05eacb13ba46d6b60d9157fcc32db8433a2.tar.gz gdb-778eb05eacb13ba46d6b60d9157fcc32db8433a2.tar.bz2 |
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 60c0b80..f5f3497 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 e4271da..3c15350 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 8407057..d40a5f8 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 f47b880..b6ed313 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 326729f..37e4d72 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 0fae6ac..22631c0 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 10e2eeb..737ccc6 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 7018d56..4d416c5 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 5f9d2b9..9f1fb31 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 a6b1671..1eb6470 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 4c4869a..ddebbd2 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 83e755e..69f8491 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 867844b..65f8d70 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. */ |