From f871ccb853a2ccbe8675c912330c041b318be8cd Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 23 Mar 2009 15:57:19 +0000 Subject: Now that errs() is properly non-buffered, there's no need to explicitly flush it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67526 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/LowerSwitch.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/Transforms/Utils/LowerSwitch.cpp') diff --git a/lib/Transforms/Utils/LowerSwitch.cpp b/lib/Transforms/Utils/LowerSwitch.cpp index a7b1efc..1da5936 100644 --- a/lib/Transforms/Utils/LowerSwitch.cpp +++ b/lib/Transforms/Utils/LowerSwitch.cpp @@ -147,8 +147,7 @@ BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, CaseRange& Pivot = *(Begin + Mid); DEBUG(errs() << "Pivot ==> " << cast(Pivot.Low)->getValue() << " -" - << cast(Pivot.High)->getValue() << "\n"; - errs().flush()); + << cast(Pivot.High)->getValue() << "\n"); BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val, OrigBlock, Default); -- cgit v1.1