1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Make it possible to run MIRCanonicalizer in pipeline.

https://reviews.llvm.org/D70321
This commit is contained in:
Aditya Nandakumar 2019-11-16 14:14:20 -08:00
parent d3bb8add3e
commit f8f7f252c0

View File

@ -275,6 +275,11 @@ namespace llvm {
/// MachineCSE - This pass performs global CSE on machine instructions.
extern char &MachineCSEID;
/// MIRCanonicalizer - This pass canonicalizes MIR by renaming vregs
/// according to the semantics of the instruction as well as hoists
/// code.
extern char &MIRCanonicalizerID;
/// ImplicitNullChecks - This pass folds null pointer checks into nearby
/// memory operations.
extern char &ImplicitNullChecksID;