Commit 302fd2cc by Segher Boessenkool Committed by Segher Boessenkool

rs6000: Disable shrink-wrap-separate for abi=spe (PR78168)

With the SPE ABI, if we wrap GPRs we need to handle the upper half of the
extended 64-bit registers as well, which we cannot easily do.  So, this
patch disables separate shrink-wrapping for the SPE ABI.


	PR target/78168
	* config/r6000/rs6000.c (rs6000_get_separate_components): Return
	NULL if TARGET_SPE_ABI.

From-SVN: r241799
parent b231822d
2016-11-02 Segher Boessenkool <segher@kernel.crashing.org>
PR target/78168
* config/r6000/rs6000.c (rs6000_get_separate_components): Return
NULL if TARGET_SPE_ABI.
2016-11-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com> 2016-11-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* gimple-ssa-store-merging.c (encode_tree_to_bitpos): Don't forget to * gimple-ssa-store-merging.c (encode_tree_to_bitpos): Don't forget to
...@@ -27634,6 +27634,9 @@ rs6000_get_separate_components (void) ...@@ -27634,6 +27634,9 @@ rs6000_get_separate_components (void)
if (WORLD_SAVE_P (info)) if (WORLD_SAVE_P (info))
return NULL; return NULL;
if (TARGET_SPE_ABI)
return NULL;
sbitmap components = sbitmap_alloc (32); sbitmap components = sbitmap_alloc (32);
bitmap_clear (components); bitmap_clear (components);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment