commit | 3e23a12bcaf18b3587088807722cd25b562d7731 | [log] [tgz] |
---|---|---|
author | Michael Ellerman <mpe@ellerman.id.au> | Tue Aug 22 11:51:37 2017 +1000 |
committer | Michael Ellerman <mpe@ellerman.id.au> | Wed Aug 23 22:27:05 2017 +1000 |
tree | 64d206524602ee36aa7257b42fe89d719295ef91 | |
parent | 215ee763f8cb9a2912d411f96f6f67a35d644c6b [diff] |
powerpc/64s: Fix replay interrupt return label name In __replay_interrupt() we take the address of a local label so we can return to it later. However the assembler turns the local label into a symbol with a name like ".L1^B42" - where "^B" is literally "\002". This does not make for pleasant stack traces. Fix it by giving the label a sensible name. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>