tree-ssa-ccp.c (get_base_constructor): Remove superfluous breaks.

2010-11-22  Richard Guenther  <rguenther@suse.de>

	* tree-ssa-ccp.c (get_base_constructor): Remove superfluous breaks.

From-SVN: r167026
This commit is contained in:
Richard Guenther 2010-11-22 11:19:24 +00:00 committed by Richard Biener
parent 8fd0a47488
commit 3e52c27bc6
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2010-11-22 Richard Guenther <rguenther@suse.de>
* tree-ssa-ccp.c (get_base_constructor): Remove superfluous breaks.
2010-11-22 Alexander Monakov <amonakov@ispras.ru>
PR rtl-optimization/45652

View File

@ -1362,8 +1362,6 @@ get_base_constructor (tree base, HOST_WIDE_INT *bit_offset)
&& (TREE_STATIC (base) || DECL_EXTERNAL (base)))
return error_mark_node;
return DECL_INITIAL (base);
break;
case ARRAY_REF:
case COMPONENT_REF:
@ -1372,12 +1370,10 @@ get_base_constructor (tree base, HOST_WIDE_INT *bit_offset)
return NULL_TREE;
*bit_offset += bit_offset2;
return get_base_constructor (base, bit_offset);
break;
case STRING_CST:
case CONSTRUCTOR:
return base;
break;
default:
return NULL_TREE;