[PATCH] D53307: [WebAssembly] Remove WebAssemblyStackifier TableGen backend
Heejin Ahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 17 16:17:16 PDT 2018
aheejin added inline comments.
================
Comment at: lib/Transforms/IPO/HotColdSplitting.cpp:153
static bool returnsOrHasSideEffects(const BasicBlock &BB) {
- const TerminatorInst *I = BB.getTerminator();
+ const Instruction *I = BB.getTerminator();
if (isa<ReturnInst>(I) || isa<IndirectBrInst>(I) || isa<InvokeInst>(I))
----------------
I think this change has been committed, so you can remove this change
Repository:
rL LLVM
https://reviews.llvm.org/D53307
More information about the llvm-commits
mailing list