diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-12-31 20:45:10 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-12-31 20:45:10 +0000 |
commit | 0a9ff4cab3a3fc1179c37855717a54ae44a5312e (patch) | |
tree | a53d41389370e2ff00b07f564a6346a142960a6f /include | |
parent | 3c6f89aa2e489b79f16270dae42d10059234cf82 (diff) | |
download | external_llvm-0a9ff4cab3a3fc1179c37855717a54ae44a5312e.zip external_llvm-0a9ff4cab3a3fc1179c37855717a54ae44a5312e.tar.gz external_llvm-0a9ff4cab3a3fc1179c37855717a54ae44a5312e.tar.bz2 |
recommit r171298 (add support for PHI nodes to ObjectSizeOffsetVisitor). Hopefully with bugs corrected now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/MemoryBuiltins.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryBuiltins.h b/include/llvm/Analysis/MemoryBuiltins.h index 9502f62..73e0e98 100644 --- a/include/llvm/Analysis/MemoryBuiltins.h +++ b/include/llvm/Analysis/MemoryBuiltins.h @@ -158,7 +158,7 @@ class ObjectSizeOffsetVisitor bool RoundToAlign; unsigned IntTyBits; APInt Zero; - SmallPtrSet<Instruction *, 8> SeenInsts; + SmallPtrSet<Value*, 8> SeenInsts; APInt align(APInt Size, uint64_t Align); |