diff options
author | Ian Lance Taylor <iant@golang.org> | 2023-06-26 09:57:21 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2023-06-26 09:57:21 -0700 |
commit | aa1e672b5d99102b03eb5fb9c51609c45f62bff7 (patch) | |
tree | 886212591b1c9d127eaaf234a4a2e22452ea384a /gcc/analyzer/region-model.h | |
parent | 97e31a0a2a2d2273687fcdb4e5416aab1a2186e1 (diff) | |
parent | 3a39a31b8ae9c6465434aefa657f7fcc86f905c0 (diff) | |
download | gcc-devel/gccgo.zip gcc-devel/gccgo.tar.gz gcc-devel/gccgo.tar.bz2 |
Merge from trunk revision 3a39a31b8ae9c6465434aefa657f7fcc86f905c0.devel/gccgo
Diffstat (limited to 'gcc/analyzer/region-model.h')
-rw-r--r-- | gcc/analyzer/region-model.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/analyzer/region-model.h b/gcc/analyzer/region-model.h index 12f84b2..d6d9615 100644 --- a/gcc/analyzer/region-model.h +++ b/gcc/analyzer/region-model.h @@ -490,6 +490,7 @@ class region_model region_model_context *ctxt) const; void check_region_for_write (const region *dest_reg, + const svalue *sval_hint, region_model_context *ctxt) const; private: @@ -555,6 +556,7 @@ private: region_model_context *ctxt) const; bool check_region_access (const region *reg, enum access_direction dir, + const svalue *sval_hint, region_model_context *ctxt) const; bool check_region_for_read (const region *src_reg, region_model_context *ctxt) const; @@ -567,8 +569,10 @@ private: const svalue *num_bytes_sval, const svalue *capacity, enum access_direction dir, + const svalue *sval_hint, region_model_context *ctxt) const; bool check_region_bounds (const region *reg, enum access_direction dir, + const svalue *sval_hint, region_model_context *ctxt) const; void check_call_args (const call_details &cd) const; |