BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0000977 [uClibc] Architecture Specific major always 08-01-06 00:24 08-23-06 19:58
Reporter GJanak View Status public  
Assigned To uClibc
Priority normal Resolution duplicate  
Status closed   Product Version
Summary 0000977: 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);
Additional Information uclibc Snapshot 1.8.2006
binutils-2.16.1
gcc-4.1.1

It's PowerPC specific Code.
Attached Files

- Relationships

- Notes
(0001552)
GJanak
08-01-06 00:35

is double of 0000245 soory... wrong filter used.
 
(0001581)
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


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker