8000 gh-101282: Revert some M4 style for BOLT configuration by corona10 · Pull Request #104751 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-101282: Revert some M4 style for BOLT configuration #104751

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply Ned's suggestion
  • Loading branch information
corona10 committed May 22, 2023
commit 554a434a2df1a014f94ca3880bc1c285a85d0131
16 changes: 15 additions & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2085,7 +2085,21 @@ AC_ARG_VAR(
AC_MSG_CHECKING([BOLT_APPLY_FLAGS])
if test -z "${BOLT_APPLY_FLAGS}"
then
BOLT_APPLY_FLAGS="-update-debug-sections -reorder-blocks=ext-tsp -reorder-functions=hfsort+ -split-functions -icf=1 -inline-all -split-eh -reorder-functions-use-hot-size -peepholes=none -jump 7BCF -tables=aggressive -inline-ap -indirect-call-promotion=all -dyno-stats -use-gnu-stack -frame-opt=hot"
BOLT_APPLY_FLAGS="-update-debug-sections\
-reorder-blocks=ext-tsp\
-reorder-functions=hfsort+\
-split-functions\
-icf=1\
-inline-all\
-split-eh\
-reorder-functions-use-hot-size\
-peepholes=none\
-jump-tables=aggressive\
-inline-ap\
-indirect-call-promotion=all\
-dyno-stats\
-use-gnu-stack\
-frame-opt=hot"
fi
AC_MSG_RESULT([$BOLT_APPLY_FLAGS])

Expand Down
0