public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/52571] New: vectorizer changes alignment of common symbols
@ 2012-03-12 21:53 ian at airs dot com
  2012-03-12 22:10 ` [Bug tree-optimization/52571] " pinskia at gcc dot gnu.org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: ian at airs dot com @ 2012-03-12 21:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52571

             Bug #: 52571
           Summary: vectorizer changes alignment of common symbols
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ian@airs.com


Compile this file with current mainline with -O2 on an ELF system:

unsigned long int *p;

void
f (char **a)
{
  p = (unsigned long int *) a;
}

In the .s file I see this:

    .comm    p,8,8

Now compile it with -O3.  In the .s file I see this:

    .comm    p,8,16

The alignment of a common symbol should not change based on the compiler
optimization level.

This appears to happen in vect_compute_data_ref_alignment.

Perhaps vect_can_force_dr_alignment_p needs to check DECL_COMMON.


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2012-05-10 16:06 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-12 21:53 [Bug tree-optimization/52571] New: vectorizer changes alignment of common symbols ian at airs dot com
2012-03-12 22:10 ` [Bug tree-optimization/52571] " pinskia at gcc dot gnu.org
2012-03-13  8:35 ` rguenth at gcc dot gnu.org
2012-03-13 17:12 ` ian at airs dot com
2012-03-14  9:39 ` rguenther at suse dot de
2012-03-14 13:02 ` rguenth at gcc dot gnu.org
2012-03-14 13:02 ` rguenth at gcc dot gnu.org
2012-03-16 16:49 ` rguenth at gcc dot gnu.org
2012-03-20 15:33 ` ro at gcc dot gnu.org
2012-03-20 15:57 ` dominiq at lps dot ens.fr
2012-03-20 16:03 ` dominiq at lps dot ens.fr
2012-04-09 23:54 ` mrs at gcc dot gnu.org
2012-05-10 11:45 ` rguenth at gcc dot gnu.org
2012-05-10 12:15 ` jakub at gcc dot gnu.org
2012-05-10 16:11 ` mrs at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).