This commit is contained in:
Neale Ferguson
2019-04-25 12:29:16 -04:00
parent f76000bbc9
commit 4f82c11ce8
2 changed files with 12 additions and 0 deletions

View File

@ -22,3 +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 ;

View File

@ -0,0 +1,11 @@
// s390.cpp
//
// Copyright (c) 2012 Steven Watanabe
//
// Distributed under the Boost Software License Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#if !defined(__s390__)
#error "Not S390"
#endif