diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-27 21:43:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-27 21:43:39 +0000 |
commit | 6d8b15bebc491c01e963415be242f28ff85c80da (patch) | |
tree | 478654e919f2c1792e77e68650d7e4f74ec9f339 /llvm/lib/Analysis/SparsePropagation.cpp | |
parent | 67c902147e17d4d908157957ce18489c7bcab081 (diff) | |
download | bcm5719-llvm-6d8b15bebc491c01e963415be242f28ff85c80da.tar.gz bcm5719-llvm-6d8b15bebc491c01e963415be242f28ff85c80da.zip |
make the build build.
llvm-svn: 85319
Diffstat (limited to 'llvm/lib/Analysis/SparsePropagation.cpp')
-rw-r--r-- | llvm/lib/Analysis/SparsePropagation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/SparsePropagation.cpp b/llvm/lib/Analysis/SparsePropagation.cpp index 6578cb4681e..a10e7cb14a4 100644 --- a/llvm/lib/Analysis/SparsePropagation.cpp +++ b/llvm/lib/Analysis/SparsePropagation.cpp @@ -166,7 +166,7 @@ void SparseSolver::getFeasibleSuccessors(TerminatorInst &TI, return; } - if (IndBrInst *IBI = dyn_cast<IndBrInst>(TI)) { + if (isa<IndBrInst>(TI)) { Succs.assign(Succs.size(), true); return; } |