Skip to content

Commit bf70e29

Browse files
committed
Fix formatting
1 parent f25ceba commit bf70e29

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

clang/lib/CIR/CodeGen/CIRGenValue.h

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,8 @@ class AggValueSlot {
307307
/// This is set to true if some external code is responsible for setting up a
308308
/// destructor for the slot. Otherwise the code which constructs it should
309309
/// push the appropriate cleanup.
310-
[[maybe_unused]]
311-
LLVM_PREFERRED_TYPE(bool)
312-
unsigned destructedFlag : 1;
310+
[[maybe_unused]]
311+
LLVM_PREFERRED_TYPE(bool) unsigned destructedFlag : 1;
313312

314313
/// This is set to true if the memory in the slot is known to be zero before
315314
/// the assignment into it. This means that zero fields don't need to be set.
@@ -327,18 +326,16 @@ class AggValueSlot {
327326
/// over. Since it's invalid in general to memcpy a non-POD C++
328327
/// object, it's important that this flag never be set when
329328
/// evaluating an expression which constructs such an object.
330-
[[maybe_unused]]
331-
LLVM_PREFERRED_TYPE(bool)
332-
unsigned aliasedFlag : 1;
329+
[[maybe_unused]]
330+
LLVM_PREFERRED_TYPE(bool) unsigned aliasedFlag : 1;
333331

334332
/// This is set to true if the tail padding of this slot might overlap
335333
/// another object that may have already been initialized (and whose
336334
/// value must be preserved by this initialization). If so, we may only
337335
/// store up to the dsize of the type. Otherwise we can widen stores to
338336
/// the size of the type.
339-
[[maybe_unused]]
340-
LLVM_PREFERRED_TYPE(bool)
341-
unsigned overlapFlag : 1;
337+
[[maybe_unused]]
338+
LLVM_PREFERRED_TYPE(bool) unsigned overlapFlag : 1;
342339

343340
public:
344341
enum IsDestructed_t { IsNotDestructed, IsDestructed };

0 commit comments

Comments
 (0)