diff options
Diffstat (limited to 'sim/common/sim-config.h')
-rw-r--r-- | sim/common/sim-config.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/sim/common/sim-config.h b/sim/common/sim-config.h index 6ab8d1a..2b6ed3d 100644 --- a/sim/common/sim-config.h +++ b/sim/common/sim-config.h @@ -195,11 +195,11 @@ extern char *simulator_sysroot; /* Alignment: - A processor architecture may or may not handle miss aligned + A processor architecture may or may not handle misaligned transfers. As alternatives: both little and big endian modes take an exception - (STRICT_ALIGNMENT); big and little endian models handle mis aligned + (STRICT_ALIGNMENT); big and little endian models handle misaligned transfers (NONSTRICT_ALIGNMENT); or the address is forced into alignment using a mask (FORCED_ALIGNMENT). @@ -220,13 +220,6 @@ extern enum sim_alignments current_alignment; #define WITH_ALIGNMENT 0 #endif -#if !defined (WITH_DEFAULT_ALIGNMENT) -#define WITH_DEFAULT_ALIGNMENT 0 /* fatal */ -#endif - - - - #define CURRENT_ALIGNMENT (WITH_ALIGNMENT \ ? WITH_ALIGNMENT \ : current_alignment) |