diff options
author | Kees Cook <keescook@chromium.org> | 2020-04-02 00:53:47 -0700 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2020-04-13 10:17:44 -0700 |
commit | 8d97fb393c5cbae23389317615f2bf30a559ed17 (patch) | |
tree | cd6b807d48e530dc732f61c9a8d549021d0928b8 /scripts/Makefile | |
parent | 8f3d9f354286745c751374f5f1fcafee6b3f3136 (diff) | |
download | linux-next-8d97fb393c5cbae23389317615f2bf30a559ed17.tar.gz |
gcc-plugins/stackleak: Avoid assignment for unused macro argument
With GCC version >= 8, the cgraph_create_edge() macro argument using
"frequency" goes unused. Instead of assigning a temporary variable for
the argument, pass the compute_call_stmt_bb_frequency() call directly
as the macro argument so that it will just not be called when it is
not wanted by the macros.
Silences the warning:
scripts/gcc-plugins/stackleak_plugin.c:54:6: warning: variable ‘frequency’ set but not used [-Wunused-but-set-variable]
Now builds cleanly with gcc-7 and gcc-9. Both boot and pass
STACKLEAK_ERASING LKDTM test.
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'scripts/Makefile')
0 files changed, 0 insertions, 0 deletions