diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-04-07 05:47:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-04-07 05:47:52 +0000 |
commit | c93a905501cf5d17705b09eaffbf8dfb862ed5a5 (patch) | |
tree | c8c951fdc7e80be90a69c187a26772efca595c17 /tools | |
parent | acd37864fc46b70ee815862437ca5505077be312 (diff) | |
download | external_llvm-c93a905501cf5d17705b09eaffbf8dfb862ed5a5.zip external_llvm-c93a905501cf5d17705b09eaffbf8dfb862ed5a5.tar.gz external_llvm-c93a905501cf5d17705b09eaffbf8dfb862ed5a5.tar.bz2 |
Remove tabs. Patch by Mike Stump!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/CrashDebugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/CrashDebugger.cpp b/tools/bugpoint/CrashDebugger.cpp index d1a57eb..d86d1c5 100644 --- a/tools/bugpoint/CrashDebugger.cpp +++ b/tools/bugpoint/CrashDebugger.cpp @@ -309,8 +309,8 @@ bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) { // Add a new return instruction of the appropriate type... const Type *RetTy = BB->getParent()->getReturnType(); - ReturnInst::Create(RetTy == Type::VoidTy ? 0 : - Constant::getNullValue(RetTy), BB); + ReturnInst::Create(RetTy == Type::VoidTy ? 0 : + Constant::getNullValue(RetTy), BB); } // The CFG Simplifier pass may delete one of the basic blocks we are |