On 29/08/2024 3:36 pm, Jan Beulich wrote: > On 29.08.2024 00:03, Andrew Cooper wrote: >> +asm ( >> + ".type arch_generic_hweightl, STT_FUNC\n\t" >> + ".globl arch_generic_hweightl\n\t" >> + ".hidden arch_generic_hweightl\n\t" >> + ".balign " STR(CONFIG_FUNCTION_ALIGNMENT) ", 0x90\n\t" > Maybe better avoid open-coding CODE_FILL, in case we want to change that > down the road?
Sadly not. They're both inside #ifdef __ASSEMBLY__, causing this to turn into a "CODE_FILL" literal. For now I'll leave some grep fodder, until we can think of a nicer way of doing this. > Also could I talk you into dropping the \t there? Done. ~Andrew