diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-04-18 18:36:32 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-04-18 18:36:32 +0000 |
commit | 809e5f8273f9229561005b797093b0ef5f97a072 (patch) | |
tree | 193253062824b1a2daf1d8f5e4aa6abfc9c4b3eb /gcc/gimplify.c | |
parent | 0cd2402db7edd870e3219e436947e75f5ae186fd (diff) | |
download | gcc-809e5f8273f9229561005b797093b0ef5f97a072.zip gcc-809e5f8273f9229561005b797093b0ef5f97a072.tar.gz gcc-809e5f8273f9229561005b797093b0ef5f97a072.tar.bz2 |
fix accidentally checked-in assert.
From-SVN: r186580
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 9e7b846..cef6118 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -1578,7 +1578,6 @@ gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p) tree index_type = TREE_TYPE (switch_expr); if (index_type == NULL_TREE) index_type = TREE_TYPE (SWITCH_COND (switch_expr)); - gcc_assert (INTEGRAL_TYPE_P (index_type)); ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val, fb_rvalue); |