aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-12-15 18:48:15 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1993-12-15 18:48:15 -0500
commit177ad45ae08e0adc94e26adcc6101fe0c1ebfff2 (patch)
tree57c8b2f5509035d24222bc550b1d7995ace73e70 /gcc
parent49b08aba12ca29601b84959168bc116f25e71845 (diff)
downloadgcc-177ad45ae08e0adc94e26adcc6101fe0c1ebfff2.zip
gcc-177ad45ae08e0adc94e26adcc6101fe0c1ebfff2.tar.gz
gcc-177ad45ae08e0adc94e26adcc6101fe0c1ebfff2.tar.bz2
(profile_function): Set ALIGN properly.
From-SVN: r6242
Diffstat (limited to 'gcc')
-rw-r--r--gcc/final.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c
index c7a1580..76bbc36 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -955,7 +955,7 @@ void
profile_function (file)
FILE *file;
{
- int align = MIN (BIGGEST_ALIGNMENT, INT_TYPE_SIZE);
+ int align = MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD);
int sval = current_function_returns_struct;
int cxt = current_function_needs_context;