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]

c/8397: sh-coff-gcc-3.2


>Number:         8397
>Category:       c
>Synopsis:       sh-coff-gcc-3.2
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          wrong-code
>Submitter-Id:   net
>Arrival-Date:   Wed Oct 30 01:06:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Hideo Saito
>Release:        gcc-3.2
>Organization:
>Environment:
NetBSD/PowerPC-1.5.2 gcc-3.0.3
>Description:
If the size of the automatic variables becomes large when there is no flag specification of optimization, the code which accesses the variable which made a register declaration is wrong.

source code:
    len -= size;
generated assembler code:
        mov     #64,r2
        add     r14,r2
        mov     #64,r2
        add     r14,r2
        mov.l   @(4,r2),r1
        mov.l   @(8,r2),r2
        sub     r2,r1
        mov.l   r1,@(4,r2)
        bra     L2
        nop
>How-To-Repeat:
compile: sh-coff-gcc -S fff.c
fff.c: see below

fff(len, size)
        register int len;
        register int size;
{
        char buf[58];
        char *ps;
        char *pe;

        while (len < size) {
                len -= size;
        }
}
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


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