On Mon, Sep 28, 2015 at 2:23 PM, Helen Tang wrote:
> I built a gcc toolchain on Ubuntu and cygwin on Windows. The results
> from objdump are different. Is this normal? Is there a way to make
> them the same?
It shouldn't happen on the same input file. If it does, please open
a bug report.
--
H
I built a gcc toolchain on Ubuntu and cygwin on Windows. The results
from objdump are different. Is this normal? Is there a way to make
them the same?
Thanks,
Helen
On 09/28/2015 09:09 AM, Konstantin Vladimirov wrote:
Simple test:
---
struct U {
unsigned s: 1;
};
struct V {
unsigned short o: 7;
unsigned short u: 1;
};
extern struct U t[];
extern struct V d[];
unsigned
foo ()
{
struct V descr = d[0];
unsigned osize = descr.o;
if (
Simple test:
---
struct U {
unsigned s: 1;
};
struct V {
unsigned short o: 7;
unsigned short u: 1;
};
extern struct U t[];
extern struct V d[];
unsigned
foo ()
{
struct V descr = d[0];
unsigned osize = descr.o;
if ( descr.u )
{
struct U udata = t[osize];
Hi Alan,
On Fri, Sep 25, 2015 at 01:33:34PM +0100, Nick Clifton wrote:
* The new PowerPC64 specific linker command line option
--no-save-restore-funcs tells the linker not to provide the
out-of-line register save and restore functions used by -Os compiled
code. The default i