summaryrefslogtreecommitdiff
path: root/gcc/gimple-low.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gimple-low.c')
-rw-r--r--gcc/gimple-low.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c
index 74f9ffb9f72..6de6eaeb6a1 100644
--- a/gcc/gimple-low.c
+++ b/gcc/gimple-low.c
@@ -398,7 +398,7 @@ block_may_fallthru (const_tree block)
{
/* This CONST_CAST is okay because expr_last returns it's argument
unmodified and we assign it to a const_tree. */
- const_tree stmt = expr_last ((tree)CONST_CAST(block));
+ const_tree stmt = expr_last (CONST_CAST_TREE(block));
switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
{