Commit 06e88d73 by Martin Jambor Committed by Martin Jambor

tree-sra.c (tree_non_mode_aligned_mem_p): Also ignore MEM_REFs.

2011-07-01  Martin Jambor  <mjambor@suse.cz>

	* tree-sra.c (tree_non_mode_aligned_mem_p): Also ignore MEM_REFs.

From-SVN: r175760
parent a174e38c
2011-07-01 Martin Jambor <mjambor@suse.cz>
* tree-sra.c (tree_non_mode_aligned_mem_p): Also ignore MEM_REFs.
2011-07-01 H.J. Lu <hongjiu.lu@intel.com>
PR middle-end/48016
......
......@@ -1076,6 +1076,7 @@ tree_non_mode_aligned_mem_p (tree exp)
unsigned int align;
if (TREE_CODE (exp) == SSA_NAME
|| TREE_CODE (exp) == MEM_REF
|| mode == BLKmode
|| !STRICT_ALIGNMENT)
return false;
......
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