[PATCH] D46779: [MemorySSA] getIncomingValueForBlock should return a MemoryAccess.

Alina Sbirlea via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 11 16:03:23 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL332153: [MemorySSA] getIncomingValueForBlock should return a MemoryAccess. (authored by asbirlea, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D46779

Files:
  llvm/trunk/include/llvm/Analysis/MemorySSA.h


Index: llvm/trunk/include/llvm/Analysis/MemorySSA.h
===================================================================
--- llvm/trunk/include/llvm/Analysis/MemorySSA.h
+++ llvm/trunk/include/llvm/Analysis/MemorySSA.h
@@ -557,7 +557,7 @@
     return -1;
   }
 
-  Value *getIncomingValueForBlock(const BasicBlock *BB) const {
+  MemoryAccess *getIncomingValueForBlock(const BasicBlock *BB) const {
     int Idx = getBasicBlockIndex(BB);
     assert(Idx >= 0 && "Invalid basic block argument!");
     return getIncomingValue(Idx);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46779.146435.patch
Type: text/x-patch
Size: 530 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180511/26822509/attachment.bin>


More information about the llvm-commits mailing list