Displaying 1 result from an estimated 1 matches for "r164026".
2012 Sep 17
2
[LLVMdev] Label address (taken with blockaddress) not exported to .s
...test_ba_opt.bc
In r159116 (committed in 24/06/2012) I get (in the end of the .s file):
.type table_closures, at object # @table_closures
.section .rodata,"a", at progbits
.globl table_closures
.align 8
table_closures:
.quad .Ltmp0
.quad .Ltmp1
.size table_closures, 16
While in r164026 (committed in 17/09/2012) I get:
.type table_closures, at object # @table_closures
.section .rodata,"a", at progbits
.globl table_closures
.align 8
table_closures:
.quad .Ltmp0
.quad 1
.size table_closures, 16
i.e. One label address is not properly exported in the table.
Is the...