Commit 6026b73e by Eric Botcazou

Cosmetic tweak to previous checkin.

From-SVN: r117751
parent af4a46a9
...@@ -232,13 +232,13 @@ get_pointer_alignment (tree exp, unsigned int max_align) ...@@ -232,13 +232,13 @@ get_pointer_alignment (tree exp, unsigned int max_align)
{ {
unsigned int align, inner; unsigned int align, inner;
if (! POINTER_TYPE_P (TREE_TYPE (exp)))
return 0;
/* We rely on TER to compute accurate alignment information. */ /* We rely on TER to compute accurate alignment information. */
if (!(optimize && flag_tree_ter)) if (!(optimize && flag_tree_ter))
return 0; return 0;
if (!POINTER_TYPE_P (TREE_TYPE (exp)))
return 0;
align = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp))); align = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp)));
align = MIN (align, max_align); align = MIN (align, max_align);
......
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