From d1721d2e50b554fc7d5c89891ca071bb77cb780a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 17 Apr 2007 18:15:04 +0000 Subject: [PATCH] bool on darwin/ppc is 4 bytes. llvm-svn: 36206 --- llvm/include/llvm/GlobalVariable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/GlobalVariable.h b/llvm/include/llvm/GlobalVariable.h index bf638fb21a46..ae3418bb8547 100644 --- a/llvm/include/llvm/GlobalVariable.h +++ b/llvm/include/llvm/GlobalVariable.h @@ -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: