diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-20 20:56:19 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-20 20:56:19 +0000 |
commit | 3fda2ab14c2a2e54309fb06165a661bf947283c1 (patch) | |
tree | 71d16c2078e7a89ac7a8545da6f47de2a5aa8ef4 | |
parent | 0a1f8ce2d82d867de3755fa1f077c68bfe3fe54e (diff) | |
download | gcc-3fda2ab14c2a2e54309fb06165a661bf947283c1.zip gcc-3fda2ab14c2a2e54309fb06165a661bf947283c1.tar.gz gcc-3fda2ab14c2a2e54309fb06165a661bf947283c1.tar.bz2 |
(MAX_LONG_TYPE_SIZE): Defined.
From-SVN: r5832
-rw-r--r-- | gcc/config/convex/convex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/convex/convex.h b/gcc/config/convex/convex.h index 4c3749e..9bb8e70 100644 --- a/gcc/config/convex/convex.h +++ b/gcc/config/convex/convex.h @@ -497,6 +497,8 @@ extern int target_flags; #define FLOAT_TYPE_SIZE 32 #define DOUBLE_TYPE_SIZE 64 #define LONG_DOUBLE_TYPE_SIZE 64 +/* This prevents cexp.c from depending on LONG_TYPE_SIZE. */ +#define MAX_LONG_TYPE_SIZE 64 /* Declare the standard types used by builtins to match convex stddef.h -- with int rather than long. */ |