mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-09 21:11:36 -07:00
Fix shifting limits and LLVM code gen bug relating to shifts
This commit is contained in:
@@ -8,8 +8,9 @@ void lb_populate_function_pass_manager(LLVMPassManagerRef fpm, bool ignore_memcp
|
||||
}
|
||||
LLVMAddPromoteMemoryToRegisterPass(fpm);
|
||||
LLVMAddMergedLoadStoreMotionPass(fpm);
|
||||
LLVMAddConstantPropagationPass(fpm);
|
||||
LLVMAddEarlyCSEPass(fpm);
|
||||
// LLVMAddEarlyCSEMemSSAPass(fpm);
|
||||
|
||||
LLVMAddConstantPropagationPass(fpm);
|
||||
LLVMAddMergedLoadStoreMotionPass(fpm);
|
||||
LLVMAddPromoteMemoryToRegisterPass(fpm);
|
||||
|
||||
Reference in New Issue
Block a user