aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-07 13:59:50 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-03-07 13:59:50 +0000
commit2e56d969e932f8527bc002a41d3c4afb22b27fc8 (patch)
tree1aa444ce5ac9679aeb7eb9453b1cf64c488c1c39 /gcc
parent249e538ffa2f8b10e8e29feedc93282332db897e (diff)
downloadgcc-2e56d969e932f8527bc002a41d3c4afb22b27fc8.zip
gcc-2e56d969e932f8527bc002a41d3c4afb22b27fc8.tar.gz
gcc-2e56d969e932f8527bc002a41d3c4afb22b27fc8.tar.bz2
stor-layout.c (set_alignment): Remove.
* stor-layout.c (set_alignment): Remove. * tree.h: Remove the corresponding prototype. From-SVN: r96018
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/stor-layout.c4
-rw-r--r--gcc/tree.h3
3 files changed, 3 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2a089eb..5caa4ca 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -24,6 +24,9 @@
* tree-ssa-operands.c (check_build_stmt): Remove.
+ * stor-layout.c (set_alignment): Remove.
+ * tree.h: Remove the corresponding prototype.
+
2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com>
* config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv.
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index 66395a9..a26d4d1 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -47,10 +47,6 @@ unsigned int maximum_field_alignment = TARGET_DEFAULT_PACK_STRUCT * BITS_PER_UNI
/* ... and its original value in bytes, specified via -fpack-struct=<value>. */
unsigned int initial_max_fld_align = TARGET_DEFAULT_PACK_STRUCT;
-/* If nonzero, the alignment of a bitstring or (power-)set value, in bits.
- May be overridden by front-ends. */
-unsigned int set_alignment = 0;
-
/* Nonzero if all REFERENCE_TYPEs are internal and hence should be
allocated in Pmode, not ptr_mode. Set only by internal_reference_types
called only by a front end. */
diff --git a/gcc/tree.h b/gcc/tree.h
index 2592e61..acbfc93 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -3215,9 +3215,6 @@ extern unsigned int maximum_field_alignment;
/* and its original value in bytes, specified via -fpack-struct=<value>. */
extern unsigned int initial_max_fld_align;
-/* If nonzero, the alignment of a bitstring or (power-)set value, in bits. */
-extern unsigned int set_alignment;
-
/* Concatenate two lists (chains of TREE_LIST nodes) X and Y
by making the last node in X point to Y.
Returns X, except if X is 0 returns Y. */