summaryrefslogtreecommitdiff
path: root/lib/CodeGen/GCStrategy.cpp
diff options
context:
space:
mode:
authorAhmed Charles <ace2001ac@gmail.com>2012-02-19 11:37:01 +0000
committerAhmed Charles <ace2001ac@gmail.com>2012-02-19 11:37:01 +0000
commitb0934ab7d811e23bf530371976b8b35f3242169c (patch)
tree11a0f1c5a9a90a6084360819fbc67b6933a11bc0 /lib/CodeGen/GCStrategy.cpp
parentd7ace3f8d1b7216d7381c408b26259e1201f7c29 (diff)
downloadllvm-b0934ab7d811e23bf530371976b8b35f3242169c.tar.gz
llvm-b0934ab7d811e23bf530371976b8b35f3242169c.tar.bz2
llvm-b0934ab7d811e23bf530371976b8b35f3242169c.tar.xz
Remove dead code. Improve llvm_unreachable text. Simplify some control flow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150918 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/GCStrategy.cpp')
-rw-r--r--lib/CodeGen/GCStrategy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/GCStrategy.cpp b/lib/CodeGen/GCStrategy.cpp
index 970c8bcfd8..506b5cf094 100644
--- a/lib/CodeGen/GCStrategy.cpp
+++ b/lib/CodeGen/GCStrategy.cpp
@@ -112,7 +112,7 @@ bool GCStrategy::initializeCustomLowering(Module &M) { return false; }
bool GCStrategy::performCustomLowering(Function &F) {
dbgs() << "gc " << getName() << " must override performCustomLowering.\n";
- llvm_unreachable(0);
+ llvm_unreachable("must override performCustomLowering");
}