Skip to content

Commit

Permalink
executors/bf: suppress llvm instcombine error
Browse files Browse the repository at this point in the history
  • Loading branch information
int-y1 committed Dec 21, 2024
1 parent f9e3356 commit a92b407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dmoj/executors/BF.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@ def compile_to_llvm(source_code: bytes) -> bytes:

OPT_PASSES = [
# Shorten instructions
'instcombine',
'instcombine<no-verify-fixpoint>', # https://github.com/llvm/llvm-project/issues/92648
'gvn',
# Optimize loops
'loop-rotate',
'loop-mssa(licm)',
'indvars',
# Clean up
'simplifycfg',
'instcombine',
'instcombine<no-verify-fixpoint>', # https://github.com/llvm/llvm-project/issues/92648
'gvn',
]

Expand Down

0 comments on commit a92b407

Please sign in to comment.