diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-27 11:43:01 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-27 11:43:01 +0000 |
commit | b15052c66984e0c583080f3c7b5457dce0b7a919 (patch) | |
tree | bda798e2a4ac555470a486dd0ba8b3b2a04a060d /gcc/libgcc2.h | |
parent | 5ae419e6a7568e7fb0a9a99cd214505a38accf72 (diff) | |
download | gcc-b15052c66984e0c583080f3c7b5457dce0b7a919.tar.gz |
* libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD
if not defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32763 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.h')
-rw-r--r-- | gcc/libgcc2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h index a404d168280..652427f311b 100644 --- a/gcc/libgcc2.h +++ b/gcc/libgcc2.h @@ -74,6 +74,10 @@ extern short int __get_eh_table_version (struct exception_descriptor *); #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE LONG_DOUBLE_TYPE_SIZE #endif +#ifndef MIN_UNITS_PER_WORD +#define MIN_UNITS_PER_WORD UNITS_PER_WORD +#endif + /* In the first part of this file, we are interfacing to calls generated by the compiler itself. These calls pass values into these routines which have very specific modes (rather than very specific types), and |