summaryrefslogtreecommitdiff
path: root/gcc/gimple-expr.h
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2015-05-13 12:36:47 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2015-05-13 12:36:47 +0000
commit681a3d868dc7f72c062905e9b4d17e206f2ede81 (patch)
tree8b53a7dae30270eb3617cdf585635fb2e0c98598 /gcc/gimple-expr.h
parent9933eb862e6f04425e628027bccc1542ee913ae4 (diff)
gimple-expr.h (is_gimple_constant): Reorder.
* gimple-expr.h (is_gimple_constant): Reorder. * tree-ssa-propagate.c (before_dom_children): Use inline accessor. From-SVN: r223156
Diffstat (limited to 'gcc/gimple-expr.h')
-rw-r--r--gcc/gimple-expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-expr.h b/gcc/gimple-expr.h
index a50a90a959b..ed23eb24bfc 100644
--- a/gcc/gimple-expr.h
+++ b/gcc/gimple-expr.h
@@ -136,9 +136,9 @@ is_gimple_constant (const_tree t)
case INTEGER_CST:
case REAL_CST:
case FIXED_CST:
- case STRING_CST:
case COMPLEX_CST:
case VECTOR_CST:
+ case STRING_CST:
return true;
default: