From a233c891443cf038d305c3cfe36e95506ae1c228 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Wed, 2 Dec 2015 07:45:50 +0000 Subject: [PATCH] S/390: Enable 64 bit atomic tests with -m31 -mzarch. gcc/testsuite/ChangeLog: 2015-12-02 Andreas Krebbel * lib/target-supports.exp: Add s390 and s390x to the list of long long atomic targets. From-SVN: r231151 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/lib/target-supports.exp | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4e62a06e0c9..e10276634f6 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-12-02 Andreas Krebbel + + * lib/target-supports.exp: Add s390 and s390x to the list of long + long atomic targets. + 2015-12-02 Andreas Krebbel * gcc.dg/optimize-bswapdi-1.c: Force using -mzarch on s390 and diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index e3b30f1551c..4e349e9832e 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -5404,6 +5404,7 @@ proc check_effective_target_sync_int_128_runtime { } { # Return 1 if the target supports atomic operations on "long long". # # Note: 32bit x86 targets require -march=pentium in dg-options. +# Note: 32bit s390 targets require -mzarch in dg-options. proc check_effective_target_sync_long_long { } { if { [istarget x86_64-*-*] || [istarget i?86-*-*]) @@ -5411,6 +5412,7 @@ proc check_effective_target_sync_long_long { } { || [istarget arm*-*-*] || [istarget alpha*-*-*] || ([istarget sparc*-*-*] && [check_effective_target_lp64]) + || [istarget s390*-*-*] || [istarget spu-*-*] } { return 1 } else { -- 2.30.2