This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[AVX] Update config/i386/i386.c to replace class with klass


I am checking in this patch to make avx to build.

H.J.
---
Index: ChangeLog.avx
===================================================================
--- ChangeLog.avx	(revision 138819)
+++ ChangeLog.avx	(working copy)
@@ -1,5 +1,10 @@
 2008-08-06  H.J. Lu  <hongjiu.lu@intel.com>
 
+	* config/i386/i386.c (ix86_expand_special_args_builtin): Replace
+	class with klass.
+
+2008-08-06  H.J. Lu  <hongjiu.lu@intel.com>
+
 	* config/i386/sse.md (sse2_movq128): Removed.
 	(*sse2_movq128): Renamd to ...
 	(sse2_movq128): This.  Updated.
Index: config/i386/i386.c
===================================================================
--- config/i386/i386.c	(revision 138820)
+++ config/i386/i386.c	(working copy)
@@ -23712,7 +23712,7 @@ ix86_expand_special_args_builtin (const 
     case V4SF_FTYPE_PCV4SF_V4SF:
     case V2DF_FTYPE_PCV2DF_V2DF:
       nargs = 2;
-      class = load;
+      klass = load;
       memory = 0;
       break;
     case VOID_FTYPE_PV8SF_V8SF_V8SF:
@@ -23720,7 +23720,7 @@ ix86_expand_special_args_builtin (const 
     case VOID_FTYPE_PV4SF_V4SF_V4SF:
     case VOID_FTYPE_PV2DF_V2DF_V2DF:
       nargs = 2;
-      class = store;
+      klass = store;
       /* Reserve memory operand for target.  */
       memory = ARRAY_SIZE (args);
       break;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]