diff options
author | Nick Clifton <nickc@cambridge.redhat.com> | 2001-04-24 08:00:44 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2001-04-24 08:00:44 +0000 |
commit | b201442f5440b21d9be81a1c6b868cfebf9247f5 (patch) | |
tree | b48a277e426b9294c51f0592277eaabbe934b0ac /gcc | |
parent | 269ee3d1d1515cfe98f7ffadc87e5ee5fd0b921f (diff) | |
download | gcc-b201442f5440b21d9be81a1c6b868cfebf9247f5.zip gcc-b201442f5440b21d9be81a1c6b868cfebf9247f5.tar.gz gcc-b201442f5440b21d9be81a1c6b868cfebf9247f5.tar.bz2 |
Always set STRICT_ALIGNMENT
From-SVN: r41517
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/v850/v850.h | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fca2bcf..a083a5b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-04-24 Nick Clifton <nickc@cambridge.redhat.com> + + * config/v850/v850.h (STRICT_ALIGNMENT): Always set, even for the + v850e. + 2001-04-23 Joseph S. Myers <jsm28@cam.ac.uk> * c-convert.c (convert): When converting to a BOOLEAN_TYPE, avoid diff --git a/gcc/config/v850/v850.h b/gcc/config/v850/v850.h index 3c364b8..5380d1e 100644 --- a/gcc/config/v850/v850.h +++ b/gcc/config/v850/v850.h @@ -298,9 +298,7 @@ extern struct small_memory_info small_memory[(int)SMALL_MEMORY_max]; /* Define this if move instructions will actually fail to work when given unaligned data. */ -#ifndef STRICT_ALIGNMENT -#define STRICT_ALIGNMENT TARGET_V850 -#endif +#define STRICT_ALIGNMENT 1 /* Define this as 1 if `char' should by default be signed; else as 0. |