* tree-dfa.c (get_ref_base_and_extent) <ARRAY_REF>: Remove space.

From-SVN: r208678
This commit is contained in:
Eric Botcazou 2014-03-19 09:40:03 +00:00 committed by Eric Botcazou
parent 25e70ad27b
commit d6bfe20ada
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-03-19 Eric Botcazou <ebotcazou@adacore.com>
* tree-dfa.c (get_ref_base_and_extent) <ARRAY_REF>: Remove space.
2014-03-18 Kai Tietz <ktietz@redhat.com>
PR rtl-optimization/56356

View File

@ -825,7 +825,7 @@ get_ref_base_and_extent (tree exp, HOST_WIDE_INT *poffset,
/* If the resulting bit-offset is constant, track it. */
if (TREE_CODE (index) == INTEGER_CST
&& (low_bound = array_ref_low_bound (exp),
TREE_CODE (low_bound) == INTEGER_CST)
TREE_CODE (low_bound) == INTEGER_CST)
&& (unit_size = array_ref_element_size (exp),
TREE_CODE (unit_size) == INTEGER_CST))
{