]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2009-08-14 Steve Ellcey <sje@cup.hp.com>
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Aug 2009 17:20:30 +0000 (17:20 +0000)
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Aug 2009 17:20:30 +0000 (17:20 +0000)
* inclhack.def (hpux_imaginary_i): New fix.
* fixincl.x: Regenerate.
* tests/base/complex.h: New file.

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

fixincludes/ChangeLog
fixincludes/fixincl.x
fixincludes/inclhack.def
fixincludes/tests/base/complex.h [new file with mode: 0644]

index a093459f31ffe0aa16afa5a5febcee6ae4e6103c..edeb1f768af6ac81309d6a78e781d2b0a022d35b 100644 (file)
@@ -1,3 +1,9 @@
+2009-08-14  Steve Ellcey  <sje@cup.hp.com>
+
+       * inclhack.def (hpux_imaginary_i): New fix.
+       * fixincl.x: Regenerate.
+       * tests/base/complex.h: New file.
+
 2009-08-12  David Edelsohn  <edelsohn@gnu.org>
 
        * inclhack.def (aix_complex): New fix.
index a4eb90b62054fc000bb6d45c880390f43acfbc7f..b3521e5ffde314a94f454deb447605a38f3cd364 100644 (file)
@@ -2,11 +2,11 @@
  * 
  * DO NOT EDIT THIS FILE   (fixincl.x)
  * 
- * It has been AutoGen-ed  Saturday August  8, 2009 at 08:07:05 PM EDT
+ * It has been AutoGen-ed  Thursday August 13, 2009 at 08:49:14 AM PDT
  * From the definitions    inclhack.def
  * and the template file   fixincl
  */
-/* DO NOT SVN-MERGE THIS FILE, EITHER Sat Aug  8 20:07:05 EDT 2009
+/* DO NOT SVN-MERGE THIS FILE, EITHER Thu Aug 13 08:49:14 PDT 2009
  *
  * You must regenerate it.  Use the ./genfixes script.
  *
@@ -15,7 +15,7 @@
  * certain ANSI-incompatible system header files which are fixed to work
  * correctly with ANSI C and placed in a directory that GNU C will search.
  *
- * This file contains 200 fixup descriptions.
+ * This file contains 201 fixup descriptions.
  *
  * See README for more information.
  *
@@ -3967,6 +3967,43 @@ static const char* apzHpux_Inttype_Int8_TPatch[] = {
     "typedef signed char int8_t;",
     (char*)NULL };
 
+/* * * * * * * * * * * * * * * * * * * * * * * * * *
+ *
+ *  Description of Hpux_Imaginary_I fix
+ */
+tSCC zHpux_Imaginary_IName[] =
+     "hpux_imaginary_i";
+
+/*
+ *  File name selection pattern
+ */
+tSCC zHpux_Imaginary_IList[] =
+  "complex.h\0";
+/*
+ *  Machine/OS name selection pattern
+ */
+tSCC* apzHpux_Imaginary_IMachs[] = {
+        "ia64-hp-hpux11.*",
+        (const char*)NULL };
+
+/*
+ *  content selection pattern - do fix if pattern found
+ */
+tSCC zHpux_Imaginary_ISelect0[] =
+       "^[ \t]*#[ \t]*define[ \t]*_Complex_I.*";
+
+#define    HPUX_IMAGINARY_I_TEST_CT  1
+static tTestDesc aHpux_Imaginary_ITests[] = {
+  { TT_EGREP,    zHpux_Imaginary_ISelect0, (regex_t*)NULL }, };
+
+/*
+ *  Fix Command Arguments for Hpux_Imaginary_I
+ */
+static const char* apzHpux_Imaginary_IPatch[] = {
+    "format",
+    "#  define _Complex_I (__extension__ 1.0iF)",
+    (char*)NULL };
+
 /* * * * * * * * * * * * * * * * * * * * * * * * * *
  *
  *  Description of Huge_Val_Hex fix
@@ -8128,9 +8165,9 @@ static const char* apzX11_SprintfPatch[] = {
  *
  *  List of all fixes
  */
-#define REGEX_COUNT          243
+#define REGEX_COUNT          244
 #define MACH_LIST_SIZE_LIMIT 181
-#define FIX_COUNT            200
+#define FIX_COUNT            201
 
 /*
  *  Enumerate the fixes
@@ -8232,6 +8269,7 @@ typedef enum {
     HPUX_STDINT_FAST_FIXIDX,
     HPUX_INTTYPE_INT_LEAST8_T_FIXIDX,
     HPUX_INTTYPE_INT8_T_FIXIDX,
+    HPUX_IMAGINARY_I_FIXIDX,
     HUGE_VAL_HEX_FIXIDX,
     HUGE_VALF_HEX_FIXIDX,
     HUGE_VALL_HEX_FIXIDX,
@@ -8819,6 +8857,11 @@ tFixDesc fixDescList[ FIX_COUNT ] = {
      HPUX_INTTYPE_INT8_T_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
      aHpux_Inttype_Int8_TTests,   apzHpux_Inttype_Int8_TPatch, 0 },
 
+  {  zHpux_Imaginary_IName,    zHpux_Imaginary_IList,
+     apzHpux_Imaginary_IMachs,
+     HPUX_IMAGINARY_I_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
+     aHpux_Imaginary_ITests,   apzHpux_Imaginary_IPatch, 0 },
+
   {  zHuge_Val_HexName,    zHuge_Val_HexList,
      apzHuge_Val_HexMachs,
      HUGE_VAL_HEX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
index 82b767ab927353e85328b05b1ccf81b77d43f062..ba3048661eba0342b39e6c5b7df4dc73439c8d31 100644 (file)
@@ -2131,6 +2131,16 @@ fix = {
     test_text ="typedef char int8_t;\n";
 };
 
+fix = {
+    hackname  = hpux_imaginary_i;
+    mach      = "ia64-hp-hpux11.*";
+    files     = complex.h;
+    select    = "^[ \t]*#[ \t]*define[ \t]*_Complex_I.*";
+    c_fix     = format;
+    c_fix_arg = "#  define _Complex_I (__extension__ 1.0iF)";
+    test_text = "#  define _Complex_I (0.f+_Imaginary_I)\n";
+};
+
 /*
  *  Fix glibc definition of HUGE_VAL in terms of hex floating point constant
  */
diff --git a/fixincludes/tests/base/complex.h b/fixincludes/tests/base/complex.h
new file mode 100644 (file)
index 0000000..c1447d4
--- /dev/null
@@ -0,0 +1,21 @@
+/*  DO NOT EDIT THIS FILE.
+
+    It has been auto-edited by fixincludes from:
+
+       "fixinc/tests/inc/complex.h"
+
+    This had to be done to correct non-standard usages in the
+    original, manufacturer supplied header file.  */
+
+
+
+#if defined( AIX_COMPLEX_CHECK )
+#  define _Complex_I (__extension__ 1.0iF)
+#define I _Complex_I
+#endif  /* AIX_COMPLEX_CHECK */
+
+
+#if defined( HPUX_IMAGINARY_I_CHECK )
+#  define _Complex_I (__extension__ 1.0iF)
+
+#endif  /* HPUX_IMAGINARY_I_CHECK */