Chromium Code Reviews
DescriptionSubzero: Make -asm-verbose local var offsets local.
When running with -asm-verbose, assembler directives like the following are generated:
lv$__123 = 16
These symbols show up in "nm" output of the .o file, and cause inconsistencies in symbol numbering between filetype=asm and filetype=obj, when doing szbuild.py bisection debugging.
The fix is to prepend ".L" to the symbol name, so that the assembler treats it as local. E.g.:
.L$lv$__123 = 16
BUG= none
R=eholk@chromium.org
Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=00b9edbac74fe06c78af4843606d52e30964fa06
Patch Set 1 #
Messages
Total messages: 7 (4 generated)
|
|||||||||||||||||||