[PATCH] D38768: Add remarks describing when a pass changes the IR instruction count of a module

Dávid Bolvanský via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 17 17:34:08 PDT 2018


xbolva00 added inline comments.


================
Comment at: lib/Analysis/LoopPass.cpp:154
   LI = &LIWP.getLoopInfo();
+  Module &M = *(F.getParent());
 #if 0
----------------
You also use
Module &M = *F.getParent();

2x Module &M = *(F.getParent())
1x Module &M = *F.getParent()

Please check and make it same


https://reviews.llvm.org/D38768





More information about the llvm-commits mailing list