aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg
diff options
context:
space:
mode:
authorSenthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>2016-08-24 08:36:56 +0000
committerSenthil Kumar Selvaraj <saaadhu@gcc.gnu.org>2016-08-24 08:36:56 +0000
commitd118868932f7fa623b09ead24732daf1e553c145 (patch)
tree3f86a9c3b75b68fed04452391617fedf6b1f3bfa /gcc/testsuite/gcc.dg
parent9a38acdfdce27d0e05e5167ebc210cfa8ff677bc (diff)
downloadgcc-d118868932f7fa623b09ead24732daf1e553c145.zip
gcc-d118868932f7fa623b09ead24732daf1e553c145.tar.gz
gcc-d118868932f7fa623b09ead24732daf1e553c145.tar.bz2
Fix bogus testsuite failures for avr.
gcc/testsuite/ 2016-08-24 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com> * gcc.c-torture/execute/pr71083.c: Use UINT32_TYPE instead of unsigned int. * gcc.dg/zero_sign_ext_test.c: Require int32plus. From-SVN: r239732
Diffstat (limited to 'gcc/testsuite/gcc.dg')
-rw-r--r--gcc/testsuite/gcc.dg/zero_sign_ext_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/zero_sign_ext_test.c b/gcc/testsuite/gcc.dg/zero_sign_ext_test.c
index 6a52678..ea2c59c 100644
--- a/gcc/testsuite/gcc.dg/zero_sign_ext_test.c
+++ b/gcc/testsuite/gcc.dg/zero_sign_ext_test.c
@@ -2,6 +2,7 @@ extern void abort (void);
/* { dg-options "-O2" } */
/* { dg-do run } */
+/* { dg-require-effective-target int32plus } */
#define TYPE_MAX(type, sign) \
((!sign) ? ((1 << (sizeof (type) * 8 - 1)) - 1) : \