aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/gimple.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/gimple.c')
-rw-r--r--gcc-4.9/gcc/gimple.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc-4.9/gcc/gimple.c b/gcc-4.9/gcc/gimple.c
index e9851ca38..2a278e41e 100644
--- a/gcc-4.9/gcc/gimple.c
+++ b/gcc-4.9/gcc/gimple.c
@@ -1464,9 +1464,12 @@ gimple_set_bb (gimple stmt, basic_block bb)
{
stmt->bb = bb;
+ if (gimple_code (stmt) != GIMPLE_LABEL)
+ return;
+
/* If the statement is a label, add the label to block-to-labels map
so that we can speed up edge creation for GIMPLE_GOTOs. */
- if (cfun->cfg && gimple_code (stmt) == GIMPLE_LABEL)
+ if (cfun->cfg)
{
tree t;
int uid;