search for: alias_defined_data

Displaying 2 results from an estimated 2 matches for "alias_defined_data".

2015 Jun 09
4
[LLVMdev] .thumb_set
...fference as it will allow me to reapply r239440. The issue i’m seeing is that we define an alpha function, then beta function, then assign alpha to beta. But given that beta has already been defined, this would mean we are redefining it at the point of the .thumb_set: .text .thumb .thumb_set alias_defined_data, bedazzle .type alpha,%function alpha: nop .type beta,%function beta: bkpt .thumb_set beta, alpha The above code currently passes. However, if I change .thumb_set to .set then I get ../test/MC/ARM/thumb_set.s:60:13: error: redefinition of 'beta' .set beta, alpha I...
2015 Jun 12
2
[LLVMdev] .thumb_set
...440. > > The issue i’m seeing is that we define an alpha function, then beta > function, then assign alpha to beta. But given that beta has already been > defined, this would mean we are redefining it at the point of the > .thumb_set: > > .text > .thumb > > .thumb_set alias_defined_data, bedazzle > > .type alpha,%function > alpha: > nop > > .type beta,%function > beta: > bkpt > > .thumb_set beta, alpha > > The above code currently passes. However, if I change .thumb_set to .set > then I get > > ../test/MC/ARM/thumb_set.s:60:13:...