aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-04-27 18:21:56 +0000
committerChris Lattner <sabre@nondot.org>2004-04-27 18:21:56 +0000
commit0ebf428e48ab258012d94d8efa05a4ae5932e2db (patch)
treee466a8fdac45fe0a0e93484b4fd13ec5b455d497
parent6ffe551f657c948d6a473a198ecbd1188bf9ce45 (diff)
Fix warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13189 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/ScalarEvolutionExpressions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpressions.h b/include/llvm/Analysis/ScalarEvolutionExpressions.h
index f2ed4238ef..607ec776d6 100644
--- a/include/llvm/Analysis/ScalarEvolutionExpressions.h
+++ b/include/llvm/Analysis/ScalarEvolutionExpressions.h
@@ -457,6 +457,7 @@ namespace llvm {
return ((SC*)this)->visitCouldNotCompute((SCEVCouldNotCompute*)S);
default:
assert(0 && "Unknown SCEV type!");
+ abort();
}
}