[PATCH] D38313: [InstCombine] Introducing Pattern Instruction Combine plug-in into InstCombine pass
David Majnemer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 25 07:54:46 PDT 2017
majnemer added inline comments.
================
Comment at: lib/Transforms/InstCombine/InstCombineInternal.h:782
+ : TLI(TLI), DL(DL), AC(AC), DT(DT) {}
+ ~PatternInstCombiner() {}
+
----------------
Ditto.
================
Comment at: lib/Transforms/InstCombine/InstCombinePatterns.cpp:90
+ : TLI(TLI), DL(DL), AC(AC), DT(DT), CurrentTruncInst(nullptr) {}
+ ~TruncInstCombine() {}
+
----------------
= default;
https://reviews.llvm.org/D38313
More information about the llvm-commits
mailing list