Skip to content

Commit 008ffb7

Browse files
committed
gh-141376: make smelly: Don't ignore initialized data and BSS
These exceptions were added in #23423
1 parent 8435a22 commit 008ffb7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Tools/build/smelly.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ def is_local_symbol_type(symtype):
3434
if symtype.islower() and symtype not in "uvw":
3535
return True
3636

37-
# Ignore the initialized data section (d and D) and the BSS data
38-
# section. For example, ignore "__bss_start (type: B)"
39-
# and "_edata (type: D)".
40-
if symtype in "bBdD":
41-
return True
42-
4337
return False
4438

4539

0 commit comments

Comments
 (0)