diff options
author | Yury Gribov <y.gribov@samsung.com> | 2015-04-17 07:51:02 +0000 |
---|---|---|
committer | Yury Gribov <ygribov@gcc.gnu.org> | 2015-04-17 07:51:02 +0000 |
commit | 18af8d16cf71b75081f20184d34206ff4ebce025 (patch) | |
tree | 09b053c21952ec3a007be7fb313cc8b3d5295944 /gcc/opts-global.c | |
parent | d7cb230a931ffc5e4356bbffdb05998162df900c (diff) | |
download | gcc-18af8d16cf71b75081f20184d34206ff4ebce025.zip gcc-18af8d16cf71b75081f20184d34206ff4ebce025.tar.gz gcc-18af8d16cf71b75081f20184d34206ff4ebce025.tar.bz2 |
asan.c (set_sanitized_sections): New function.
2015-04-17 Yury Gribov <y.gribov@samsung.com>
gcc/
* asan.c (set_sanitized_sections): New function.
(section_sanitized_p): Ditto.
(asan_protect_global): Optionally sanitize user-defined
sections.
* asan.h (set_sanitized_sections): Declare new function.
* common.opt (fsanitize-sections): New option.
* doc/invoke.texi (-fsanitize-sections): Document new option.
* opts-global.c (handle_common_deferred_options): Handle new
option.
gcc/testsuite/
* c-c++-common/asan/user-section-1.c: New test.
From-SVN: r222168
Diffstat (limited to 'gcc/opts-global.c')
-rw-r--r-- | gcc/opts-global.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/opts-global.c b/gcc/opts-global.c index b61bdcf..1035b8d 100644 --- a/gcc/opts-global.c +++ b/gcc/opts-global.c @@ -458,6 +458,10 @@ handle_common_deferred_options (void) error ("unrecognized shadow offset %qs", opt->arg); break; + case OPT_fsanitize_sections_: + set_sanitized_sections (opt->arg); + break; + default: gcc_unreachable (); } |