mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 22:51:37 +00:00
gcc-plugins: remove code for GCC versions older than 4.9
Documentation/process/changes.rst says the minimal GCC version is 4.9. Hence, BUILDING_GCC_VERSION is greater than or equal to 4009. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20201202134929.99883-1-masahiroy@kernel.org
This commit is contained in:
parent
b650545978
commit
af2d22254e
10 changed files with 1 additions and 505 deletions
|
@ -68,9 +68,7 @@ static void register_attributes(void *event_data, void *data)
|
|||
{
|
||||
user_attr.name = "user";
|
||||
user_attr.handler = handle_user_attribute;
|
||||
#if BUILDING_GCC_VERSION >= 4007
|
||||
user_attr.affects_type_identity = true;
|
||||
#endif
|
||||
|
||||
register_attribute(&user_attr);
|
||||
}
|
||||
|
@ -137,11 +135,9 @@ static void initialize(tree var)
|
|||
if (!gimple_assign_single_p(stmt))
|
||||
continue;
|
||||
rhs1 = gimple_assign_rhs1(stmt);
|
||||
#if BUILDING_GCC_VERSION >= 4007
|
||||
/* ... of a non-clobbering expression... */
|
||||
if (TREE_CLOBBER_P(rhs1))
|
||||
continue;
|
||||
#endif
|
||||
/* ... to our variable... */
|
||||
if (gimple_get_lhs(stmt) != var)
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue