diff options
author | Chris Lattner <sabre@nondot.org> | 2011-05-22 07:03:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-05-22 07:03:34 +0000 |
commit | 9e7bc05ad7fb69a25aff37e348942b07eed9cd73 (patch) | |
tree | 7c0dc3ada0e8f21d05cf8d95991ffd787b9fc96c /lib/Transforms | |
parent | 0e959394ad5b74970253d21069ae11f25290e1fc (diff) |
fix PR9841 by having GVN not process dead loads. This was
causing it to get into infinite loops when it would widen a
load (which can necessarily leave around dead loads).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131847 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/GVN.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 1da5238bbb..2515fd112c 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -1607,6 +1607,11 @@ bool GVN::processLoad(LoadInst *L) { if (L->isVolatile()) return false; + if (L->use_empty()) { + markInstructionForDeletion(L); + return true; + } + // ... to a pointer that has been loaded from before... MemDepResult Dep = MD->getDependency(L); |