re PR lto/63704 (-flto internal compiler error: in mems_in_disjoint_alias_sets_p...
authorRichard Biener <rguenther@suse.de>
Thu, 27 Nov 2014 09:51:32 +0000 (09:51 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 27 Nov 2014 09:51:32 +0000 (09:51 +0000)
2014-11-27  Richard Biener  <rguenther@suse.de>

PR middle-end/63704
* alias.c (mems_in_disjoint_alias_sets_p): Remove assert
and instead return false when !fstrict-aliasing.

From-SVN: r218114

gcc/ChangeLog
gcc/alias.c

index 26b4720c8580b62e688ee5adddfe8c75151cd353..999686f6ee18c33242e4ea1582daa20bdbf239a7 100644 (file)
@@ -1,3 +1,9 @@
+2014-11-27  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/63704
+       * alias.c (mems_in_disjoint_alias_sets_p): Remove assert
+       and instead return false when !fstrict-aliasing.
+
 2014-11-27  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/61634
index 425eb0be72195fcb7aac647209a588ac971d53c8..22717ad0fd716fe24bba88bbd19429e1c9b4731d 100644 (file)
@@ -417,17 +417,9 @@ get_alias_set_entry (alias_set_type alias_set)
 static inline int
 mems_in_disjoint_alias_sets_p (const_rtx mem1, const_rtx mem2)
 {
-/* Perform a basic sanity check.  Namely, that there are no alias sets
-   if we're not using strict aliasing.  This helps to catch bugs
-   whereby someone uses PUT_CODE, but doesn't clear MEM_ALIAS_SET, or
-   where a MEM is allocated in some way other than by the use of
-   gen_rtx_MEM, and the MEM_ALIAS_SET is not cleared.  If we begin to
-   use alias sets to indicate that spilled registers cannot alias each
-   other, we might need to remove this check.  */
-  gcc_assert (flag_strict_aliasing
-             || (!MEM_ALIAS_SET (mem1) && !MEM_ALIAS_SET (mem2)));
-
-  return ! alias_sets_conflict_p (MEM_ALIAS_SET (mem1), MEM_ALIAS_SET (mem2));
+  return (flag_strict_aliasing
+         && ! alias_sets_conflict_p (MEM_ALIAS_SET (mem1),
+                                     MEM_ALIAS_SET (mem2)));
 }
 
 /* Return true if the first alias set is a subset of the second.  */