Revert r28379.
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 16 Feb 2011 21:08:35 +0000 (21:08 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 16 Feb 2011 21:08:35 +0000 (21:08 +0000)
commit1ed087ad8cec2ba94ab781f6e09981615e618754
treed6096f79ab4fb20d8be246873996341e7c67b014
parent6dc7084e6820b27a75a82d03341cff0f05ba67ba
Revert r28379.

This optimization is unsafe and breaks Load-Store-optimization.

It is not enough that both loads are connected by the memory edge,
if one Load has an exception-edge, they cannot be parallelized, because
this would destroy exception order.
load-store-opt handle this case and many others, but expect all
Loads in order yet.
opt_parallelize_mem() does this optimization in a wider range.

[r28385]
ir/ir/iropt.c