aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.h
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2000-03-27 13:43:01 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2000-03-27 13:43:01 +0200
commit32b32c8f629c13d19134d391035a7cdb4bc7296b (patch)
treebda798e2a4ac555470a486dd0ba8b3b2a04a060d /gcc/libgcc2.h
parentaa63d244633f2bca50cc08548ba9a831cea15452 (diff)
downloadgcc-32b32c8f629c13d19134d391035a7cdb4bc7296b.zip
gcc-32b32c8f629c13d19134d391035a7cdb4bc7296b.tar.gz
gcc-32b32c8f629c13d19134d391035a7cdb4bc7296b.tar.bz2
libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD if not defined.
* libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD if not defined. From-SVN: r32763
Diffstat (limited to 'gcc/libgcc2.h')
-rw-r--r--gcc/libgcc2.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h
index a404d16..652427f 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