Hello, On Fri, 13 May 2016, Nathan Sidwell wrote: > I've committed this cleanup to use TARGET_MANGLE_DECL_ASSEMBLER_NAME rather > than the ad-hoc solution the ptx backend currently has. I didn't address it > during the earlier set of cleanups as I felt there were more important things > to address then.
This regresses offloading compilation: the new hook isn't applied during LTO stream-in, so target functions named 'call' won't be remapped. I'd solve it by avoiding the hook and performing remapping in a simple IPA pass registered from the backend. Alexander