Skip to content
Snippets Groups Projects
Commit d1721d2e authored by Chris Lattner's avatar Chris Lattner
Browse files

bool on darwin/ppc is 4 bytes.

llvm-svn: 36206
parent 233f97ac
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
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