diff options
author | Tom de Vries <tom@codesourcery.com> | 2015-12-10 08:56:14 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2015-12-10 08:56:14 +0000 |
commit | 08628df3c02212af402cb291175eea7381bfbe1b (patch) | |
tree | 3fd976cda9c90596fe79d037319b2ece877821c2 /gcc/tree-ssa-structalias.c | |
parent | 99dcb4ea031c0cad1b6cf23406ab5d2bcd148cda (diff) | |
download | gcc-08628df3c02212af402cb291175eea7381bfbe1b.zip gcc-08628df3c02212af402cb291175eea7381bfbe1b.tar.gz gcc-08628df3c02212af402cb291175eea7381bfbe1b.tar.bz2 |
Remove invalid assert in find_func_aliases_for_builtin_call
2015-12-10 Tom de Vries <tom@codesourcery.com>
* tree-ssa-structalias.c (find_func_aliases_for_builtin_call): Remove
invalid assert.
From-SVN: r231491
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 15e351e..c350862 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -4533,7 +4533,6 @@ find_func_aliases_for_builtin_call (struct function *fn, gcall *t) gcc_assert (TREE_CODE (fnarg) == ADDR_EXPR); tree fndecl = TREE_OPERAND (fnarg, 0); tree arg = gimple_call_arg (t, argpos); - gcc_assert (TREE_CODE (arg) == ADDR_EXPR); varinfo_t fi = get_vi_for_tree (fndecl); find_func_aliases_for_call_arg (fi, 0, arg); |