]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR target/78263 (Compile failure with AltiVec library on PPC64le and -std=c++11...
authorBill Schmidt <wschmidt@linux.ibm.com>
Tue, 4 Jun 2019 21:52:32 +0000 (21:52 +0000)
committerWilliam Schmidt <wschmidt@gcc.gnu.org>
Tue, 4 Jun 2019 21:52:32 +0000 (21:52 +0000)
[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

gcc/ChangeLog
gcc/config/rs6000/altivec.h
gcc/testsuite/ChangeLog
gcc/testsuite/g++.target/powerpc/powerpc.exp [new file with mode: 0644]
gcc/testsuite/g++.target/powerpc/undef-bool-3.C [new file with mode: 0644]

index 30febc6fecc006beaca68dbb126ab441265b6789..8b3fe98771d591940507fb18ef36b66468b466bb 100644 (file)
@@ -1,3 +1,9 @@
+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>
 
        * tree-ssa-loop-niter.c (number_of_iterations_ne): Skip
index d66ae7ca2c73ea4a6ef44914828661d362e31464..dafc76aeafa506a1ce2a271d65c7c721a0951892 100644 (file)
 /* If __APPLE_ALTIVEC__ is defined, the compiler supports 'vector',
    'pixel' and 'bool' as context-sensitive AltiVec keywords (in 
    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__)
-/* You are allowed to undef these for C++ compatibility.  */
+#if !defined(__APPLE_ALTIVEC__) \
+    && (!defined(__STRICT_ANSI__) || !defined(__cplusplus))
 #define vector __vector
 #define pixel __pixel
 #define bool __bool
index 5978f7905f32e4ef804316b6862a429b8a6cf92b..7bcc461327dcf01e80e3fe456948dfc856d8bf55 100644 (file)
@@ -1,3 +1,10 @@
+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>
 
        * c-c++-common/gomp/lastprivate-conditional-2.c (foo): Don't expect
diff --git a/gcc/testsuite/g++.target/powerpc/powerpc.exp b/gcc/testsuite/g++.target/powerpc/powerpc.exp
new file mode 100644 (file)
index 0000000..4e7ea33
--- /dev/null
@@ -0,0 +1,44 @@
+#  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
+
diff --git a/gcc/testsuite/g++.target/powerpc/undef-bool-3.C b/gcc/testsuite/g++.target/powerpc/undef-bool-3.C
new file mode 100644 (file)
index 0000000..27f3da5
--- /dev/null
@@ -0,0 +1,13 @@
+/* { 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;
+}
+