Rename mips1 to mips and alias mips1 to mips

This commit is contained in:
Nikita Kniazev
2021-07-28 21:06:54 +03:00
parent c3de80c2ef
commit 1a55d1d9c6
2 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,8 @@ obj 64 : 64.cpp ;
obj arm : arm.cpp ; obj arm : arm.cpp ;
obj combined : combined.cpp ; obj combined : combined.cpp ;
obj mips1 : mips1.cpp ; obj mips : mips.cpp ;
alias mips1 : mips ; # Backwards compatibility
obj power : power.cpp ; obj power : power.cpp ;
obj riscv : riscv.cpp ; obj riscv : riscv.cpp ;
obj sparc : sparc.cpp ; obj sparc : sparc.cpp ;

View File

@ -1,4 +1,4 @@
// mips1.cpp // mips.cpp
// //
// Copyright (c) 2012 Steven Watanabe // Copyright (c) 2012 Steven Watanabe
// //
@ -7,5 +7,5 @@
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
#if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000)) #if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
#error "Not MIPS1" #error "Not MIPS"
#endif #endif