From 0c139987750f04736d4fa5d328803cb36a975cbd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 25 Apr 2003 03:16:33 +0000 Subject: [PATCH] Rename Kept -> Suffix FIX problem where we were incorrectly putting the prefix of the list into the "suffix" list. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5926 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/ListReducer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/bugpoint/ListReducer.h b/tools/bugpoint/ListReducer.h index 7b9a2f11412..a4dee5bc587 100644 --- a/tools/bugpoint/ListReducer.h +++ b/tools/bugpoint/ListReducer.h @@ -34,14 +34,14 @@ struct ListReducer { unsigned MidTop = TheList.size(); while (MidTop > 1) { unsigned Mid = MidTop / 2; - std::vector Prefix(TheList.begin()+Mid, TheList.end()); - std::vector Kept (TheList.begin(), TheList.begin()+Mid); + std::vector Prefix(TheList.begin(), TheList.begin()+Mid); + std::vector Suffix(TheList.begin()+Mid, TheList.end()); - switch (doTest(Prefix, Kept)) { + switch (doTest(Prefix, Suffix)) { case KeepSuffix: // The property still holds. We can just drop the prefix elements, and // shorten the list to the "kept" elements. - TheList.swap(Kept); + TheList.swap(Suffix); MidTop = TheList.size(); break; case KeepPrefix: