With certain gcc versions, commit
1166ecf781 ("tools/Rules.mk: Don't
optimize debug builds; add macro debugging information") results in the
file scope inline assembly no longer being emitted to the .text section
without explicitly switching to it, which causes the blowfish test to
signal SEGV.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
uint64_t blowfish_test(uint64_t input);
asm (
- ".globl _start\n"
+ "\t.text\n"
+ "\t.globl _start\n"
"_start:\n"
#if defined(__i386__)
"push %edx; push %eax; "