On 2010/07/31 11:39, Roberto Fernandez wrote: > I'd be happy to dig this. > could someone run the following commands on hppa and send me the output > please ? > > $ cat >null.c <<EOF > const unsigned int len = 1; > const unsigned char buf[1] = { 0x00 }; > EOF > $ cc -S -o - null.c > > Roberto >
>From kettenis@ - thanks! .file "null.c" .globl len .section .rodata .align 4 .type len, @object .size len, 4 len: .word 1 .globl buf .align 4 .type buf, @object .size buf, 1 buf: .zero 1 .ident "GCC: (GNU) 4.2.1 20070719 "