summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorDavide Italiano <davide@freebsd.org>2017-10-11 04:21:51 +0000
committerDavide Italiano <davide@freebsd.org>2017-10-11 04:21:51 +0000
commite2138fe41b8c98192669138d8f7595b541d08cc0 (patch)
tree93e6b3aafb117f9a4108954ee00845bf97a4642c /llvm/lib/Transforms
parent6a80e5dd3b30c26ab3b9403b9844162823527355 (diff)
downloadbcm5719-llvm-e2138fe41b8c98192669138d8f7595b541d08cc0.tar.gz
bcm5719-llvm-e2138fe41b8c98192669138d8f7595b541d08cc0.zip
[GVN] Don't replace constants with constants.
This fixes PR34908. Patch by Alex Crichton! Differential Revision: https://reviews.llvm.org/D38765 llvm-svn: 315429
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Scalar/GVN.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVN.cpp b/llvm/lib/Transforms/Scalar/GVN.cpp
index 4e24d755c26..c3cc2375e3b 100644
--- a/llvm/lib/Transforms/Scalar/GVN.cpp
+++ b/llvm/lib/Transforms/Scalar/GVN.cpp
@@ -1362,6 +1362,11 @@ bool GVN::processAssumeIntrinsic(IntrinsicInst *IntrinsicI) {
}
markInstructionForDeletion(IntrinsicI);
return false;
+ } else if (isa<Constant>(V)) {
+ // If it's not false, and constant, it must evaluate to true. This means our
+ // assume is assume(true), and thus, pointless, and we don't want to do
+ // anything more here.
+ return false;
}
Constant *True = ConstantInt::getTrue(V->getContext());
OpenPOWER on IntegriCloud