This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/2480] aliasing problem with global structures


------- Additional Comments From steven at gcc dot gnu dot org  2005-01-23 14:54 -------
CVS today: 
 
        .text 
        .p2align 4,,15 
.globl bar 
        .type   bar, @function 
bar: 
        movl    ex1, %eax 
        pushl   %ebp 
        movl    %esp, %ebp 
        movb    $1, (%eax) 
        movl    $2, 4(%eax) 
        movb    $3, 8(%eax) 
        leave 
        ret 
        .size   bar, .-bar 
        .p2align 4,,15 
.globl foo 
        .type   foo, @function 
foo: 
        pushl   %ebp 
        movl    %esp, %ebp 
        movl    8(%ebp), %eax 
        movb    $1, (%eax) 
        movl    $2, 4(%eax) 
        movb    $3, 8(%eax) 
        leave 
        ret 
        .size   foo, .-foo 
 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]