Correct logic to exclude i386 inline assenbly when -O0
The i386 MPI inline assembly code was being incorrectly included when all compiler optimisation was disabled.
This commit is contained in:
parent
948f264302
commit
e08754762d
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@
|
||||||
* This is done as the number of registers used in the assembly code doesn't
|
* This is done as the number of registers used in the assembly code doesn't
|
||||||
* work with the -O0 option.
|
* work with the -O0 option.
|
||||||
*/
|
*/
|
||||||
#if defined(__i386__) && !defined(__OPTIMIZE__)
|
#if defined(__i386__) && defined(__OPTIMIZE__)
|
||||||
|
|
||||||
#define MULADDC_INIT \
|
#define MULADDC_INIT \
|
||||||
asm( \
|
asm( \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue