Index: tools/check-name-clashes.py |
diff --git a/tools/check-name-clashes.py b/tools/check-name-clashes.py |
index 89a7dee7a163cc1ca70c28f71b7d0b409cb97b13..862cb4410f5dcc4e9c1c760de307cc95758fc6bf 100755 |
--- a/tools/check-name-clashes.py |
+++ b/tools/check-name-clashes.py |
@@ -11,7 +11,7 @@ import sys |
FILENAME = "src/runtime/runtime.h" |
LISTHEAD = re.compile(r"#define\s+(\w+LIST\w*)\((\w+)\)") |
LISTBODY = re.compile(r".*\\$") |
-BLACKLIST = ['INLINE_FUNCTION_LIST'] |
+BLACKLIST = ['INLINE_FUNCTION_LIST', 'INLINE_OPTIMIZED_FUNCTION_LIST'] |
class Function(object): |