mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:21:07 +08:00
analyzer: fix ICE when DECL_INITIAL is error_mark_node [PR98580]
lto-streamer-out.c's get_symbol_initial_value can return error_mark_node rather than DECL_INITIAL as an optimization to avoid extra sections for simple scalar values. Add a check to the analyzer to handle such cases gracefully. gcc/analyzer/ChangeLog: PR analyzer/98580 * region.cc (decl_region::get_svalue_for_initializer): Gracefully handle when LTO writes out DECL_INITIAL as error_mark_node. gcc/testsuite/ChangeLog: PR analyzer/98580 * gcc.dg/analyzer/pr98580-a.c: New test. * gcc.dg/analyzer/pr98580-b.c: New test.
This commit is contained in:
parent
b87ec922c4
commit
0677759f75
@ -969,6 +969,11 @@ decl_region::get_svalue_for_initializer (region_model_manager *mgr) const
|
||||
c.get_map ());
|
||||
}
|
||||
|
||||
/* LTO can write out error_mark_node as the DECL_INITIAL for simple scalar
|
||||
values (to avoid writing out an extra section). */
|
||||
if (init == error_mark_node)
|
||||
return NULL;
|
||||
|
||||
if (TREE_CODE (init) == CONSTRUCTOR)
|
||||
return get_svalue_for_constructor (init, mgr);
|
||||
|
||||
|
9
gcc/testsuite/gcc.dg/analyzer/pr98580-a.c
Normal file
9
gcc/testsuite/gcc.dg/analyzer/pr98580-a.c
Normal file
@ -0,0 +1,9 @@
|
||||
/* { dg-do link } */
|
||||
/* { dg-require-effective-target lto } */
|
||||
/* { dg-additional-options "-flto" } */
|
||||
/* { dg-additional-sources pr98580-b.c } */
|
||||
|
||||
int a;
|
||||
int *p = &a;
|
||||
int foo();
|
||||
int main() { return foo(); }
|
2
gcc/testsuite/gcc.dg/analyzer/pr98580-b.c
Normal file
2
gcc/testsuite/gcc.dg/analyzer/pr98580-b.c
Normal file
@ -0,0 +1,2 @@
|
||||
extern int *p;
|
||||
int foo() { return *p; }
|
Loading…
x
Reference in New Issue
Block a user