[uClibc 0000977]: Compiler Error, illegal lvalue

bugs at busybox.net bugs at busybox.net
Thu Aug 24 02:58:15 UTC 2006


The following issue has been CLOSED 
====================================================================== 
http://busybox.net/bugs/view.php?id=977 
====================================================================== 
Reported By:                GJanak
Assigned To:                uClibc
====================================================================== 
Project:                    uClibc
Issue ID:                   977
Category:                   Architecture Specific
Reproducibility:            always
Severity:                   major
Priority:                   normal
Status:                     closed
Resolution:                 duplicate
Duplicate:                  0
Fixed in Version:           
====================================================================== 
Date Submitted:             08-01-2006 00:24 PDT
Last Modified:              08-23-2006 19:58 PDT
====================================================================== 
Summary:                    Compiler Error, illegal lvalue
Description: 
Using Snapshot from 1.8.2006:

uClibc/libc/string/powerpc/string.c: line 212 (and more)
orginal:
 do {
                *--(unsigned char *)tmp_to = *--(unsigned char *)from;
        } while (--rem);
*Gives an illegal lvalue error with gcc 4.1.1

workaround:

 do {
                --tmp_to;
                --from;
                *(unsigned char *)tmp_to = *(unsigned char *)from;
        } while (--rem);

====================================================================== 

---------------------------------------------------------------------- 
 GJanak - 08-01-06 00:35  
---------------------------------------------------------------------- 
is double of http://busybox.net/bugs/view.php?id=0000245 soory... wrong filter
used. 

---------------------------------------------------------------------- 
 vapier - 08-23-06 19:58  
---------------------------------------------------------------------- 
dupe of 245 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
08-01-06 00:24  GJanak         New Issue                                    
08-01-06 00:24  GJanak         Status                   new => assigned     
08-01-06 00:24  GJanak         Assigned To               => uClibc          
08-01-06 00:35  GJanak         Note Added: 0001552                          
08-23-06 19:58  vapier         Note Added: 0001581                          
08-23-06 19:58  vapier         Status                   assigned => closed  
08-23-06 19:58  vapier         Resolution               open => duplicate   
======================================================================




More information about the uClibc-cvs mailing list