Index: tools/generate-runtime-tests.py |
diff --git a/tools/generate-runtime-tests.py b/tools/generate-runtime-tests.py |
index c5bbeaea4b86b0cc5e06ce3aefd042edf69f31c3..a718daa3f16d9653c5f599bb00cea026549527ba 100755 |
--- a/tools/generate-runtime-tests.py |
+++ b/tools/generate-runtime-tests.py |
@@ -820,7 +820,6 @@ def FindInlineRuntimeFunctions(): |
inline_functions = [] |
with open(HEADERFILENAME, "r") as f: |
inline_list = "#define INLINE_FUNCTION_LIST(F) \\\n" |
- inline_opt_list = "#define INLINE_OPTIMIZED_FUNCTION_LIST(F) \\\n" |
inline_function = re.compile(r"^\s*F\((\w+), \d+, \d+\)\s*\\?") |
mode = "SEARCHING" |
for line in f: |
@@ -831,7 +830,7 @@ def FindInlineRuntimeFunctions(): |
if not line.endswith("\\\n"): |
mode = "SEARCHING" |
elif mode == "SEARCHING": |
- if line == inline_list or line == inline_opt_list: |
+ if line == inline_list: |
mode = "ACTIVE" |
return inline_functions |