bool on darwin/ppc is 4 bytes.

llvm-svn: 36206
This commit is contained in:
Chris Lattner 2007-04-17 18:15:04 +00:00
parent 233f97ac6a
commit d1721d2e50
1 changed files with 2 additions and 2 deletions

View File

@ -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: