public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Support get_range_query with a nullptr argument
@ 2023-02-17 21:45 Andrew Pinski
  2023-02-17 21:45 ` [PATCH 2/2] Remove #if GIMPLE around 1 - a pattern Andrew Pinski
  2023-02-20  8:01 ` [PATCH 1/2] Support get_range_query with a nullptr argument Richard Biener
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Pinski @ 2023-02-17 21:45 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andrew Pinski

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/value-query.h b/gcc/value-query.h
index 63878968118..2d7bf8fcf33 100644
--- a/gcc/value-query.h
+++ b/gcc/value-query.h
@@ -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.
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-20 10:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-17 21:45 [PATCH 1/2] Support get_range_query with a nullptr argument Andrew Pinski
2023-02-17 21:45 ` [PATCH 2/2] Remove #if GIMPLE around 1 - a pattern Andrew Pinski
2023-02-17 22:12   ` Jeff Law
2023-02-20  8:01 ` [PATCH 1/2] Support get_range_query with a nullptr argument Richard Biener

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).