summaryrefslogtreecommitdiffstats
path: root/crypto/mips_arch.h
diff options
context:
space:
mode:
authorHua Zhang <hua.zhang1974@hotmail.com>2019-03-13 14:28:44 +0800
committerRichard Levitte <levitte@openssl.org>2019-03-19 07:36:21 +0100
commit1b9c5f2e2f283a3b12d02a89c11b8e8d97bc6312 (patch)
tree753f519d6f1af6951c116d201f1a1b6c0c8b0fae /crypto/mips_arch.h
parent2864df8f9d3264e19b49a246e272fb513f4c1be3 (diff)
Fix compiling error for mips32r6 and mips64r6
There are some compiling errors for mips32r6 and mips64r6: crypto/bn/bn-mips.S:56: Error: opcode not supported on this processor: mips2 (mips2) `mulu $1,$12,$7' crypto/mips_arch.h: Assembler messages: crypto/mips_arch.h:15: Error: junk at end of line, first unrecognized character is `&' Signed-off-by: Hua Zhang <hua.zhang1974@hotmail.com> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8464)
Diffstat (limited to 'crypto/mips_arch.h')
-rw-r--r--crypto/mips_arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/mips_arch.h b/crypto/mips_arch.h
index 0ac3bfaac8..df4ff7aeba 100644
--- a/crypto/mips_arch.h
+++ b/crypto/mips_arch.h
@@ -11,7 +11,7 @@
# define __MIPS_ARCH_H__
# if (defined(__mips_smartmips) || defined(_MIPS_ARCH_MIPS32R3) || \
- defined(_MIPS_ARCH_MIPS32R5) || defined(_MIPS_ARCH_MIPS32R6))
+ defined(_MIPS_ARCH_MIPS32R5) || defined(_MIPS_ARCH_MIPS32R6)) \
&& !defined(_MIPS_ARCH_MIPS32R2)
# define _MIPS_ARCH_MIPS32R2
# endif