aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/c-pragma.c9
-rw-r--r--gcc/ch/ChangeLog4
-rw-r--r--gcc/ch/except.c1
4 files changed, 8 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 18da8ab..5eff6b0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-10 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
+
+ * c-pragma.c (maximum_field_alignment): Remove duplicate declaration.
+
2000-02-10 Jason Merrill <jason@casey.cygnus.com>
* dwarf2out.c (add_abstract_origin_attribute): Check TREE_CODE (origin)
diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c
index 618a0d6..bebeae7 100644
--- a/gcc/c-pragma.c
+++ b/gcc/c-pragma.c
@@ -31,15 +31,6 @@ Boston, MA 02111-1307, USA. */
#ifdef HANDLE_GENERIC_PRAGMAS
-#ifdef HANDLE_PRAGMA_PACK
-/* When structure field packing is in effect, this variable is the
- number of bits to use as the maximum alignment. When packing is not
- in effect, this is zero. */
-
-extern int maximum_field_alignment;
-#endif
-
-
#ifdef HANDLE_PRAGMA_PACK_PUSH_POP
typedef struct align_stack
{
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog
index b1b9bad..aa747d7 100644
--- a/gcc/ch/ChangeLog
+++ b/gcc/ch/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-10 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
+
+ * except.c (maximum_field_alignment): Remove duplicate declaration.
+
2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* All files: PROTO -> PARAMS.
diff --git a/gcc/ch/except.c b/gcc/ch/except.c
index fc3eb51..4518545 100644
--- a/gcc/ch/except.c
+++ b/gcc/ch/except.c
@@ -396,7 +396,6 @@ emit_setup_handler ()
/* We temporarily reset the maximum_field_alignment to zero so the
compiler's exception data structures can be compatible with the
run-time system, even when we're compiling with -fpack. */
- extern int maximum_field_alignment;
int save_maximum_field_alignment = maximum_field_alignment;
maximum_field_alignment = 0;
push_obstacks_nochange ();