]> gcc.gnu.org Git - gcc.git/commitdiff
print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC to print the alias...
authorJeffrey A Law <law@cygnus.com>
Mon, 12 Jun 2000 23:08:05 +0000 (23:08 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 12 Jun 2000 23:08:05 +0000 (17:08 -0600)
        * print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC
        to print the alias set.
        * print-tree.c (print_node, DECL_* nodes and case 't'): Similarly.

From-SVN: r34507

gcc/ChangeLog
gcc/print-rtl.c
gcc/print-tree.c

index f490946b3171d2b03dd98223d962b4e5b35089b2..3324401aa66a99c9056000b8b64362b583b6ae46 100644 (file)
@@ -1,3 +1,9 @@
+Mon Jun 12 17:04:17 2000  Jeffrey A Law  (law@cygnus.com)
+
+       * print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC
+       to print the alias set.
+       * print-tree.c (print_node, DECL_* nodes and case 't'): Similarly.
+
 2000-06-12  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
 
         * config/float-vax.h: Add GFLOAT defines.
index ab19a16343c7607b5b7103dfa6c83431f7d16173..7f458fb799c656193e1930048b234c6ee396adfd 100644 (file)
@@ -398,7 +398,7 @@ print_rtx (in_rtx)
   switch (GET_CODE (in_rtx))
     {
     case MEM:
-      fprintf (outfile, " %d", MEM_ALIAS_SET (in_rtx));
+      fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, MEM_ALIAS_SET (in_rtx));
       break;
 
 #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT && MAX_LONG_DOUBLE_TYPE_SIZE == 64
index 8774538ce3e64bddf80fd0099fe8b9c02bcd2423..7e69e4b6b222426f75bacaef1c35ed5b5d8fbea6 100644 (file)
@@ -425,7 +425,11 @@ print_node (file, prefix, node, indent)
                 built_in_names[(int) DECL_FUNCTION_CODE (node)]);
 
       if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
-       fprintf (file, " alias set %d", DECL_POINTER_ALIAS_SET (node));
+       {
+         fprintf (file, " alias set ");
+         fprintf (file, HOST_WIDE_INT_PRINT_DEC, 
+                  DECL_POINTER_ALIAS_SET (node));
+       }
 
       if (TREE_CODE (node) == FIELD_DECL)
        {
@@ -518,7 +522,8 @@ print_node (file, prefix, node, indent)
 
       fprintf (file, " align %d", TYPE_ALIGN (node));
       fprintf (file, " symtab %d", TYPE_SYMTAB_ADDRESS (node));
-      fprintf (file, " alias set %d", TYPE_ALIAS_SET (node));
+      fprintf (file, " alias set ");
+      fprintf (file, HOST_WIDE_INT_PRINT_DEC, TYPE_ALIAS_SET (node));
 
       print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
 
This page took 0.078325 seconds and 5 git commands to generate.