Support get_range_query with a nullptr argument
authorAndrew Pinski <apinski@marvell.com>
Fri, 17 Feb 2023 16:45:43 +0000 (16:45 +0000)
committerAndrew Pinski <apinski@marvell.com>
Sat, 18 Feb 2023 01:48:33 +0000 (01:48 +0000)
get_range_query didn't support a nullptr argument
before and would crash.
See also the thread at
https://inbox.sourceware.org/gcc/4f6718af-e17a-41ef-a886-f45e4ac3d7a4@redhat.com/T/

OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions.

gcc/ChangeLog:

* value-query.h (get_range_query): Return the global ranges
for a nullptr func.

gcc/value-query.h

index 6387896..2d7bf8f 100644 (file)
@@ -140,7 +140,7 @@ get_global_range_query ()
 ATTRIBUTE_RETURNS_NONNULL inline range_query *
 get_range_query (const struct function *fun)
 {
-  return fun->x_range_query ? fun->x_range_query : &global_ranges;
+  return (fun && fun->x_range_query) ? fun->x_range_query : &global_ranges;
 }
 
 // Query the global range of NAME in function F.  Default to cfun.