Change s390 -> s390x

This commit is contained in:
Neale Ferguson
2019-04-26 09:04:06 -04:00
parent 4f82c11ce8
commit b62dd43cc0
2 changed files with 4 additions and 4 deletions

View File

@@ -22,4 +22,4 @@ obj power : power.cpp ;
obj riscv : riscv.cpp ; obj riscv : riscv.cpp ;
obj sparc : sparc.cpp ; obj sparc : sparc.cpp ;
obj x86 : x86.cpp ; obj x86 : x86.cpp ;
obj s390 : s390.cpp ; obj s390x : s390x.cpp ;

View File

@@ -1,4 +1,4 @@
// s390.cpp // s390x.cpp
// //
// Copyright (c) 2012 Steven Watanabe // Copyright (c) 2012 Steven Watanabe
// //
@@ -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(__s390__) #if !defined(__s390x__)
#error "Not S390" #error "Not S390x"
#endif #endif