summaryrefslogtreecommitdiff
path: root/tools/bugpoint/CrashDebugger.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-06-05 00:42:29 +0000
committerDan Gohman <gohman@apple.com>2010-06-05 00:42:29 +0000
commit70972bb5cd9ef1ae22555f53dccc7e3c5ea56cb0 (patch)
treeb490023628e78473efbab58613028aa860cab894 /tools/bugpoint/CrashDebugger.cpp
parent6d56b9fabcfb1fc874a6122cf41d876c4673e9d4 (diff)
downloadllvm-70972bb5cd9ef1ae22555f53dccc7e3c5ea56cb0.tar.gz
llvm-70972bb5cd9ef1ae22555f53dccc7e3c5ea56cb0.tar.bz2
llvm-70972bb5cd9ef1ae22555f53dccc7e3c5ea56cb0.tar.xz
No need to special-case structs here; structs are first-class now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105513 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/CrashDebugger.cpp')
-rw-r--r--tools/bugpoint/CrashDebugger.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/bugpoint/CrashDebugger.cpp b/tools/bugpoint/CrashDebugger.cpp
index 46b33d2a72..9c9dddedce 100644
--- a/tools/bugpoint/CrashDebugger.cpp
+++ b/tools/bugpoint/CrashDebugger.cpp
@@ -298,9 +298,7 @@ bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
TerminatorInst *BBTerm = BB->getTerminator();
- if (BBTerm->getType()->isStructTy())
- BBTerm->replaceAllUsesWith(UndefValue::get(BBTerm->getType()));
- else if (BB->getTerminator()->getType() !=
+ if (BB->getTerminator()->getType() !=
Type::getVoidTy(BB->getContext()))
BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));