mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 06:06:19 +00:00
bool on darwin/ppc is 4 bytes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36206 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
261cdfbe5e
commit
7a83aecc03
@ -41,8 +41,8 @@ class GlobalVariable : public GlobalValue {
|
||||
void setNext(GlobalVariable *N) { Next = N; }
|
||||
void setPrev(GlobalVariable *N) { Prev = N; }
|
||||
|
||||
bool isConstantGlobal; // Is this a global constant?
|
||||
bool isThreadLocalSymbol; // Is this symbol "Thread Local"?
|
||||
bool isConstantGlobal : 1; // Is this a global constant?
|
||||
bool isThreadLocalSymbol : 1; // Is this symbol "Thread Local"?
|
||||
Use Initializer;
|
||||
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user