summaryrefslogtreecommitdiff
path: root/src/passes/LLVMMemoryCopyFillLowering.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add bulk-memory-opt feature and ignore call-indirect-overlong (#7139)Derek Schuff2024-12-061-2/+2
| | | | | | | | | | LLVM recently split the bulk-memory-opt feature out from bulk-memory, containing just memory.copy and memory.fill. This change follows that, making bulk-memory-opt also enabled when all of bulk-memory is enabled. It also introduces call-indirect-overlong following LLVM, but ignores it, since Binaryen has always allowed the encoding (i.e. command line flags enabling or disabling the feature are accepted but ignored).
* Rename memory-copy-fill-lowering pass (#7082)Derek Schuff2024-11-161-0/+260
Since the resulting code has the same undefined behavior as LLVM, make the pass name reflect that.