Skip to content
Snippets Groups Projects
Commit c9759df0 authored by John McCall's avatar John McCall
Browse files

Finish adopting ConstantInitBuilder in CGObjCGNU. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288269 91177308-0d34-0410-b5e6-96231b3b80d8
parent 43b3a20e
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -155,6 +155,13 @@ public:
add(llvm::ConstantExpr::getBitCast(value, type));
}
/// Add a bunch of new values to this initializer.
void addAll(ArrayRef<llvm::Constant *> values) {
assert(!Finished && "cannot add more values after finishing builder");
assert(!Frozen && "cannot add values while subbuilder is active");
Builder.Buffer.append(values.begin(), values.end());
}
/// An opaque class to hold the abstract position of a placeholder.
class PlaceholderPosition {
size_t Index;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment