summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/SimplifyCFGPass.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-30 20:06:40 +0000
committerChris Lattner <sabre@nondot.org>2009-08-30 20:06:40 +0000
commit8a67ac525ed874473f0cbe4fc4a02a2606bff7dd (patch)
tree4df770abeae240d773c6e7e5b80782511ff8d8ab /lib/Transforms/Scalar/SimplifyCFGPass.cpp
parent2345d1d22e9b03b4149ddfdc16582cebc0a4bdfc (diff)
downloadllvm-8a67ac525ed874473f0cbe4fc4a02a2606bff7dd.tar.gz
llvm-8a67ac525ed874473f0cbe4fc4a02a2606bff7dd.tar.bz2
llvm-8a67ac525ed874473f0cbe4fc4a02a2606bff7dd.tar.xz
add getPointerAddressSpace() to GEP instruction, use the method
in a few scalar xforms to simplify things. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/SimplifyCFGPass.cpp')
-rw-r--r--lib/Transforms/Scalar/SimplifyCFGPass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/SimplifyCFGPass.cpp b/lib/Transforms/Scalar/SimplifyCFGPass.cpp
index 5de79c49cf..ca4292bcaa 100644
--- a/lib/Transforms/Scalar/SimplifyCFGPass.cpp
+++ b/lib/Transforms/Scalar/SimplifyCFGPass.cpp
@@ -132,7 +132,7 @@ static bool MarkAliveBlocks(BasicBlock *BB,
if (isa<UndefValue>(Ptr) ||
(isa<ConstantPointerNull>(Ptr) &&
- cast<PointerType>(Ptr->getType())->getAddressSpace() == 0)) {
+ SI->getPointerAddressSpace() == 0)) {
ChangeToUnreachable(SI, Context);
Changed = true;
break;