Skip to content

Commit 11423cc

Browse files
authored
Remove old invalid-input warning. NFC (#24133)
The usage of this warning was removed in #10560.
1 parent 6ffc7bb commit 11423cc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/test_other.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12737,7 +12737,7 @@ def test_warning_flags(self):
1273712737
stderr = self.run_process(cmd + ['-w'], stderr=PIPE).stderr
1273812738
self.assertNotContained('warning', stderr)
1273912739

12740-
# -Wno-invalid-input to suppress just this one warning
12740+
# -Wno-emcc to suppress just this one warning
1274112741
stderr = self.run_process(cmd + ['-Wno-emcc'], stderr=PIPE).stderr
1274212742
self.assertNotContained('warning', stderr)
1274312743

tools/shared.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272
# unused diagnostic flags. TODO(sbc): remove at some point
7373
diagnostics.add_warning('almost-asm')
7474
diagnostics.add_warning('experimental')
75-
diagnostics.add_warning('invalid-input')
7675
# Don't show legacy settings warnings by default
7776
diagnostics.add_warning('legacy-settings', enabled=False, part_of_all=False)
7877
# Catch-all for other emcc warnings

0 commit comments

Comments
 (0)