diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2015-03-30 15:20:32 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-04-07 13:04:51 +0200 |
commit | 41b585b2ed793db6f02ec87d0026d73382e8180a (patch) | |
tree | ee481cafff7a7353db7ee57b9ab4a7f10b773cd3 /scripts | |
parent | bd8b22d2888e75063c9012b95341d6cb36456434 (diff) | |
download | linux-stable-41b585b2ed793db6f02ec87d0026d73382e8180a.tar.gz linux-stable-41b585b2ed793db6f02ec87d0026d73382e8180a.tar.bz2 linux-stable-41b585b2ed793db6f02ec87d0026d73382e8180a.zip |
Kbuild: kallsyms: drop special handling of pre-3.0 GCC symbols
Since we have required at least GCC v3.2 for some time now, we
can drop the special handling of the 'gcc[0-9]_compiled.' label
which is not emitted anymore since GCC v3.0.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kallsyms.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index f4b016782f0d..8fa81e84e295 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c @@ -214,7 +214,6 @@ static int symbol_valid(struct sym_entry *s) NULL }; static char *special_suffixes[] = { - "_compiled.", /* gcc < 3.0: "gcc[0-9]_compiled." */ "_veneer", /* arm */ NULL }; |