Commit e756e900 by Bill Schmidt Committed by William Schmidt

re PR target/78263 (Compile failure with AltiVec library on PPC64le and -std=c++11 flag)

[gcc]

2019-06-04  Bill Schmidt  <wschmidt@linux.ibm.com>

	PR target/78263
	* config/rs6000/altivec.h: Don't #define vector, pixel, bool for
	C++ with strict ANSI requirements.

[gcc/testsuite]

2019-06-04  Bill Schmidt  <wschmidt@linux.ibm.com>

	PR target/78263
	* g++.target/powerpc: New directory.
	* g++.target/powerpc/powerpc.exp: New test driver.
	* g++.target/powerpc/undef-bool-3.C: New.

From-SVN: r271927
parent 4a28e1f1
2019-06-04 Bill Schmidt <wschmidt@linux.ibm.com>
PR target/78263
* config/rs6000/altivec.h: Don't #define vector, pixel, bool for
C++ with strict ANSI requirements.
2019-06-04 Marc Glisse <marc.glisse@inria.fr> 2019-06-04 Marc Glisse <marc.glisse@inria.fr>
* tree-ssa-loop-niter.c (number_of_iterations_ne): Skip * tree-ssa-loop-niter.c (number_of_iterations_ne): Skip
......
...@@ -37,10 +37,12 @@ ...@@ -37,10 +37,12 @@
/* If __APPLE_ALTIVEC__ is defined, the compiler supports 'vector', /* If __APPLE_ALTIVEC__ is defined, the compiler supports 'vector',
'pixel' and 'bool' as context-sensitive AltiVec keywords (in 'pixel' and 'bool' as context-sensitive AltiVec keywords (in
non-AltiVec contexts, they revert to their original meanings, non-AltiVec contexts, they revert to their original meanings,
if any), so we do not need to define them as macros. */ if any), so we do not need to define them as macros. Also,
avoid defining them as macros for C++ with strict ANSI, as
this is not compatible. */
#if !defined(__APPLE_ALTIVEC__) #if !defined(__APPLE_ALTIVEC__) \
/* You are allowed to undef these for C++ compatibility. */ && (!defined(__STRICT_ANSI__) || !defined(__cplusplus))
#define vector __vector #define vector __vector
#define pixel __pixel #define pixel __pixel
#define bool __bool #define bool __bool
......
2019-06-04 Bill Schmidt <wschmidt@linux.ibm.com>
PR target/78263
* g++.target/powerpc: New directory.
* g++.target/powerpc/powerpc.exp: New test driver.
* g++.target/powerpc/undef-bool-3.C: New.
2019-06-04 Jakub Jelinek <jakub@redhat.com> 2019-06-04 Jakub Jelinek <jakub@redhat.com>
* c-c++-common/gomp/lastprivate-conditional-2.c (foo): Don't expect * c-c++-common/gomp/lastprivate-conditional-2.c (foo): Don't expect
......
# Specific regression driver for PowerPC.
# Copyright (C) 2019 Free Software Foundation, Inc.
#
# This file is part of GCC.
#
# GCC is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GCC is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GCC; see the file COPYING3. If not see
# <http://www.gnu.org/licenses/>. */
# GCC testsuite that uses the `dg.exp' driver.
# Exit immediately if this isn't a PowerPC target.
if {![istarget powerpc*-*-*] } then {
return
}
# Load support procs.
load_lib g++-dg.exp
global DEFAULT_CXXFLAGS
if ![info exists DEFAULT_CXXFLAGS] then {
set DEFAULT_CXXFLAGS " -pedantic-errors"
}
# Initialize `dg'.
dg-init
# Main loop.
dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.C]] \
"" $DEFAULT_CXXFLAGS
# All done.
dg-finish
/* { dg-do compile } */
/* { dg-options "-O2 -std=c++11" } */
/* Test to ensure that "bool" is not #define'd in altivec.h for C++ when
we require strict ANSI. We should compile without errors. */
#include <altivec.h>
bool foo (int x)
{
return x == 2;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment