[PATCH] D61879: WIP: Prototype of DSE optimizations for -ftrivial-auto-var-init
Alina Sbirlea via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 8 12:12:08 PDT 2019
asbirlea added inline comments.
================
Comment at: llvm/include/llvm/Analysis/MemorySSA.h:1109
// else.
- if (MemoryPhi *MP = dyn_cast<MemoryPhi>(Access))
+ if (const MemoryPhi *MP = dyn_cast<MemoryPhi>(Access))
return MP->getIncomingValue(ArgNo);
----------------
Could changes in this file be landed separately?
They seem unrelated and not in need of review.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61879/new/
https://reviews.llvm.org/D61879
More information about the cfe-commits
mailing list