Lines Matching refs:register
14 include/mbedtls/bn_mul.h:46:13: error: PIC register clobbered by ‘ebx’ in ‘asm’
16 This is because older GCC versions treated the x86 ebx register (which is
17 used for the GOT) as a fixed reserved register when building as PIC.
19 This is fixed by an improved register allocator in GCC 5+. From the release
22 Register allocation improvements: Reuse of the PIC hard register, instead of
23 using a fixed register, was implemented on x86/x86-64 targets. This
47 + * fixed reserved register when building as PIC, leading to errors
48 + * like: bn_mul.h:46:13: error: PIC register clobbered by ‘ebx’ in ‘asm’
50 + * This is fixed by an improved register allocator in GCC 5+. From the
52 + * Register allocation improvements: Reuse of the PIC hard register,
53 + * instead of using a fixed register, was implemented on x86/x86-64