Skip to content

Commit 3f8e5fd

Browse files
committed
[NFC] Format some code in GlobalVariable.h
1 parent 10951ca commit 3f8e5fd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

llvm/include/llvm/IR/GlobalVariable.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ class GlobalVariable : public GlobalObject, public ilist_node<GlobalVariable> {
4040
friend class SymbolTableListTraits<GlobalVariable>;
4141

4242
AttributeSet Attrs;
43-
bool isConstantGlobal : 1; // Is this a global constant?
44-
bool isExternallyInitializedConstant : 1; // Is this a global whose value
45-
// can change from its initial
46-
// value before global
47-
// initializers are run?
43+
44+
// Is this a global constant?
45+
bool isConstantGlobal : 1;
46+
// Is this a global whose value can change from its initial value before
47+
// global initializers are run?
48+
bool isExternallyInitializedConstant : 1;
4849

4950
public:
5051
/// GlobalVariable ctor - If a parent module is specified, the global is

0 commit comments

Comments
 (0)