Skip to content

Commit 4ee3689

Browse files
authored
delete '-fthinlto-index' in delete_flags (#142)
* test model test * delete -fthinlto-index flag * yapf * pylint
1 parent aba3b50 commit 4ee3689

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler_opt/rl/problem_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,5 @@ def flags_to_add(self) -> Tuple[str, ...]:
113113
# List of flags to remove from clang compilation command. The flag names
114114
# should match the actual flags provided to clang.'
115115
def flags_to_delete(self) -> Tuple[str, ...]:
116-
return ('-split-dwarf-file', '-split-dwarf-output', '-fthinlto-index',
117-
'-fprofile-sample-use', '-fprofile-remapping-file')
116+
return ('-split-dwarf-file', '-split-dwarf-output', '-fprofile-sample-use',
117+
'-fprofile-remapping-file')

0 commit comments

Comments
 (0)