Is there a gcc switch which will generated a printed list of each identifier andit's size in a fashion similar to the HP-UX cc +m switch?
-Wa,-as will instruct GAS to output all symbols (but not the sizes); if you use some other assembler, it might have an option too (or the linker might, use -Wl, for that). Segher