summaryrefslogtreecommitdiff
path: root/src/passes/SignExtLowering.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [NFC] Standardize Super:: over super:: (#6920)Alon Zakai2024-09-101-1/+1
| | | | As the name of a class, uppercase seems better here.
* Disable sign extension in SignExtLowering.cpp (#5676)Thomas Lively2023-04-191-0/+8
| | | | | | | | | | | | | * Disable sign extension in SignExtLowering.cpp The sign extension lowering pass would previously lower away the sign extension instructions, but it wouldn't disable the sign extension feature, so follow-on passes such as optimize-instructions could reintroduce sign extension instructions. Fix the pass to disable the sign extension feature to prevent sign extension instructions from being reintroduced later. * update pass description
* Add a pass to lower sign-ext operations to MVP (#5254)Alon Zakai2022-11-151-0/+75
Fixes #5250