search for: bkpt

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

Did you mean: bkp
2015 Jun 09
4
[LLVMdev] .thumb_set
...tion, 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 would like to make .thumb_set throw the same error here as I believe that is how it sho...
2015 Jun 12
2
[LLVMdev] .thumb_set
...hat 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 would like to make .thumb_set throw the sa...