[PATCH] D118111: [llvm][support] Replace `std::vector<bool>` use in YAMLTraits
Jan Svoboda via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 26 02:20:26 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGaa33688cada4: [llvm][support] Replace `std::vector<bool>` use in YAMLTraits (authored by jansvoboda11).
Changed prior to commit:
https://reviews.llvm.org/D118111?vs=402794&id=403181#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D118111/new/
https://reviews.llvm.org/D118111
Files:
llvm/include/llvm/Support/YAMLTraits.h
llvm/lib/Support/YAMLTraits.cpp
Index: llvm/lib/Support/YAMLTraits.cpp
===================================================================
--- llvm/lib/Support/YAMLTraits.cpp
+++ llvm/lib/Support/YAMLTraits.cpp
@@ -299,7 +299,7 @@
bool Input::beginBitSetScalar(bool &DoClear) {
BitValuesUsed.clear();
if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) {
- BitValuesUsed.insert(BitValuesUsed.begin(), SQ->Entries.size(), false);
+ BitValuesUsed.resize(SQ->Entries.size());
} else {
setError(CurrentNode, "expected sequence of bit values");
}
Index: llvm/include/llvm/Support/YAMLTraits.h
===================================================================
--- llvm/include/llvm/Support/YAMLTraits.h
+++ llvm/include/llvm/Support/YAMLTraits.h
@@ -9,6 +9,7 @@
#ifndef LLVM_SUPPORT_YAMLTRAITS_H
#define LLVM_SUPPORT_YAMLTRAITS_H
+#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
@@ -1521,7 +1522,7 @@
std::error_code EC;
BumpPtrAllocator StringAllocator;
document_iterator DocIterator;
- std::vector<bool> BitValuesUsed;
+ llvm::BitVector BitValuesUsed;
HNode *CurrentNode = nullptr;
bool ScalarMatchFound = false;
bool AllowUnknownKeys = false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118111.403181.patch
Type: text/x-patch
Size: 1381 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220126/33fd541d/attachment.bin>
More information about the llvm-commits
mailing list