diff options
author | Elliott Hughes <enh@google.com> | 2020-06-15 11:18:43 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2020-06-15 11:18:43 -0700 |
commit | 8c936b4e6c5ffc5d55b93e59587d95066abf9b0e (patch) | |
tree | 3c4c54acb8b47cdbe4951e7380d4c1e1096c6ade /benchmarks | |
parent | 4ea659a7c6abdae1873e72627a06a8d2aa8c02fd (diff) |
Use more inclusive language.
One turns out not to be used at all, and the pylintrc even uses the more
intention-revealing term in the machine readable part, just not the
comment!
Test: treehugger
Change-Id: I4db7f1cf4fa1aa8ee601857e4e4c400e2119887c
Diffstat (limited to 'benchmarks')
-rwxr-xr-x | benchmarks/linker_relocation/regen/gen_bench.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/linker_relocation/regen/gen_bench.py b/benchmarks/linker_relocation/regen/gen_bench.py index 61156cea1..74823198d 100755 --- a/benchmarks/linker_relocation/regen/gen_bench.py +++ b/benchmarks/linker_relocation/regen/gen_bench.py @@ -62,7 +62,7 @@ kBionicSonames: Set[str] = set([ ]) # Skip these symbols so the benchmark runs on multiple C libraries (glibc, Bionic, musl). -kBionicSymbolBlacklist: Set[str] = set([ +kBionicIgnoredSymbols: Set[str] = set([ '__FD_ISSET_chk', '__FD_SET_chk', '__assert', @@ -169,7 +169,7 @@ def make_asm_file(lib: LoadedLibrary, is_main: bool, out_filename: Path, map_out nonlocal defs d = defs.get(name) if d is not None and d.soname in kBionicSonames: - if name in kBionicSymbolBlacklist: return None + if name in kBionicIgnoredSymbols: return None # Discard relocations to newer Bionic symbols, because there aren't many of them, and # they would limit where the benchmark can run. if ver == 'LIBC': return name |