diff options
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 018cc09adc4..1ada64b120d 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -966,7 +966,7 @@ cgraph_create_indirect_edge (struct cgraph_node *caller, gimple call_stmt, gcc_assert (TREE_CODE (type) == RECORD_TYPE); edge->indirect_info->param_index = -1; edge->indirect_info->otr_token - = tree_low_cst (OBJ_TYPE_REF_TOKEN (target), 1); + = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target)); edge->indirect_info->otr_type = type; edge->indirect_info->polymorphic = 1; } |