diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-10-26 12:01:21 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-10-26 12:01:21 -0400 |
commit | 970a03254708272047d2b47229e40dbe16fc47d5 (patch) | |
tree | f1be8fc9ddef9dc3d0bef24695c2f88929f6825c /tools | |
parent | 9937386057661b5f8fd3995181ff6f9ad25f56a4 (diff) | |
download | seabios-970a03254708272047d2b47229e40dbe16fc47d5.tar.gz |
Misc minor cleanups.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/checkstack.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkstack.py b/tools/checkstack.py index 680c0335..8eafa975 100755 --- a/tools/checkstack.py +++ b/tools/checkstack.py @@ -13,8 +13,8 @@ import sys import re # List of functions we can assume are never called. -#IGNORE = ['screenc', 'BX_PANIC', '__dprintf'] -IGNORE = ['screenc', 'BX_PANIC'] +#IGNORE = ['BX_PANIC', '__dprintf'] +IGNORE = ['BX_PANIC'] # Find out maximum stack usage for a function def calcmaxstack(funcs, funcaddr): |