Merge pull request #312 from wzssyqa/no-mips1-only

make mips1.cpp recognize all mips
This commit is contained in:
jzmaddock
2020-01-25 11:09:54 +00:00
committed by GitHub

View File

@ -6,6 +6,6 @@
// accompanying file LICENSE_1_0.txt or copy at // accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
#if !((defined(__mips) && __mips == 1) || defined(_MIPS_ISA_MIPS1) || defined(_R3000)) #if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
#error "Not MIPS1" #error "Not MIPS1"
#endif #endif