From 177ad45ae08e0adc94e26adcc6101fe0c1ebfff2 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 15 Dec 1993 18:48:15 -0500 Subject: [PATCH] (profile_function): Set ALIGN properly. From-SVN: r6242 --- gcc/final.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/final.c b/gcc/final.c index c7a1580ba09..76bbc365449 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;