OSDN Git Service

2002-02-05 Aldy Hernandez <aldyh@redhat.com>
authoraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Feb 2002 08:28:23 +0000 (08:28 +0000)
committeraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Feb 2002 08:28:23 +0000 (08:28 +0000)
        * config/rs6000/altivec.h (vec_step_help): Rename to
        __vec_step_help.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49518 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/altivec.h

index 8ee7e31..3c7d686 100644 (file)
@@ -1,5 +1,10 @@
 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
 
+        * config/rs6000/altivec.h (vec_step_help): Rename to
+        __vec_step_help.
+
+2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
+
         * config/rs6000/altivec.h: Fix typos.
 
 2002-02-05  Jason Thorpe  <thorpej@wasabisystems.com>
index acb0022..51749c2 100644 (file)
@@ -4057,54 +4057,54 @@ vec_any_out (vector float a1, vector float a2)
 /* vec_step */
 
 template<typename _Tp>
-struct vec_step_help
+struct __vec_step_help
 {
   // All proper vector types will specialize elem.
 };
 
 template<>
-struct vec_step_help<vector signed short>
+struct __vec_step_help<vector signed short>
 {
   static const int elem = 8;
 };
 
 template<>
-struct vec_step_help<vector unsigned short>
+struct __vec_step_help<vector unsigned short>
 {
   static const int elem = 8;
 };
 
 template<>
-struct vec_step_help<vector signed int>
+struct __vec_step_help<vector signed int>
 {
   static const int elem = 4;
 };
 
 template<>
-struct vec_step_help<vector unsigned int>
+struct __vec_step_help<vector unsigned int>
 {
   static const int elem = 4;
 };
 
 template<>
-struct vec_step_help<vector unsigned char>
+struct __vec_step_help<vector unsigned char>
 {
   static const int elem = 16;
 };
 
 template<>
-struct vec_step_help<vector signed char>
+struct __vec_step_help<vector signed char>
 {
   static const int elem = 16;
 };
 
 template<>
-struct vec_step_help<vector float>
+struct __vec_step_help<vector float>
 {
   static const int elem = 4;
 };
 
-#define vec_step(t)  vec_step_help<t>::elem
+#define vec_step(t)  __vec_step_help<t>::elem
 
 #else /* not C++ */