* alias.h (alias_set_type): Change from HOST_WIDE_INT to int.
authorIan Lance Taylor <iant@google.com>
Thu, 6 Mar 2008 01:18:51 +0000 (01:18 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Thu, 6 Mar 2008 01:18:51 +0000 (01:18 +0000)
From-SVN: r132964

gcc/ChangeLog
gcc/alias.h

index 8d2bd72c053baeac352875a336dab2f42d71d480..a103de6a70ebe0fc385cb1586236d2d5fd4a7075 100644 (file)
@@ -1,3 +1,7 @@
+2008-03-05  Ian Lance Taylor  <iant@google.com>
+
+       * alias.h (alias_set_type): Change from HOST_WIDE_INT to int.
+
 2008-03-05  Kenneth Zadeck <zadeck@naturalbridge.com>
 
        * fwprop.c (update_df): Support width and offset parameters of
index b9d954eea023180aaf821ad78dc734155e554e19..73811d302b198c05dd9fa4436a5490e49d26fbe5 100644 (file)
@@ -22,8 +22,13 @@ along with GCC; see the file COPYING3.  If not see
 
 #include "coretypes.h"
 
-/* The type of an alias set.  */
-typedef HOST_WIDE_INT alias_set_type;
+/* The type of an alias set.  Code currently assumes that variables of
+   this type can take the values 0 (the alias set which aliases
+   everything) and -1 (sometimes indicating that the alias set is
+   unknown, sometimes indicating a memory barrier) and -2 (indicating
+   that the alias set should be set to a unique value but has not been
+   set yet).  */
+typedef int alias_set_type;
 
 extern alias_set_type new_alias_set (void);
 extern alias_set_type get_alias_set (tree);