We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 008ffb7 commit 6158bf2Copy full SHA for 6158bf2
1 file changed
Tools/build/smelly.py
@@ -22,7 +22,6 @@
22
23
IGNORED_EXTENSION = "_ctypes_test"
24
# Ignore constructor and destructor functions
25
-IGNORED_SYMBOLS = {'_init', '_fini'}
26
27
28
def is_local_symbol_type(symtype):
@@ -83,8 +82,6 @@ def get_smelly_symbols(stdout, dynamic=False):
83
82
84
if is_local_symbol_type(symtype):
85
local_symbols.append(result)
86
- elif symbol in IGNORED_SYMBOLS:
87
- local_symbols.append(result)
88
else:
89
smelly_symbols.append(result)
90
0 commit comments