diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-02 14:06:07 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-02 14:06:07 +0000 |
commit | c9f1fe2344dce13988f30ef655c0ff905bb269df (patch) | |
tree | 62b82aca32765b49c46ca77b8877a72b972be340 /gcc/config | |
parent | 2536cc1623b8604ace8785135fc954b83d41d6dc (diff) | |
download | gcc-c9f1fe2344dce13988f30ef655c0ff905bb269df.tar.gz |
Only define STRICT_ALIGNMENT if it is not already defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28402 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/v850/v850.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/v850/v850.h b/gcc/config/v850/v850.h index f6882e79da3..efffa918089 100644 --- a/gcc/config/v850/v850.h +++ b/gcc/config/v850/v850.h @@ -301,7 +301,9 @@ 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 1 #define STRICT_ALIGNMENT 1 +#endif /* Define this as 1 if `char' should by default be signed; else as 0. |