aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/GlobalVariable.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-17 18:15:04 +0000
committerChris Lattner <sabre@nondot.org>2007-04-17 18:15:04 +0000
commit7a83aecc03bad600b18cb1f4c8e68c6c3d4a464e (patch)
treefcd2e3bb851a8067cc7d7aeb87b5ffef0bd99950 /include/llvm/GlobalVariable.h
parent261cdfbe5e6e11d56ca1c49a75f26fece3b139c8 (diff)
downloadexternal_llvm-7a83aecc03bad600b18cb1f4c8e68c6c3d4a464e.zip
external_llvm-7a83aecc03bad600b18cb1f4c8e68c6c3d4a464e.tar.gz
external_llvm-7a83aecc03bad600b18cb1f4c8e68c6c3d4a464e.tar.bz2
bool on darwin/ppc is 4 bytes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36206 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/GlobalVariable.h')
-rw-r--r--include/llvm/GlobalVariable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/GlobalVariable.h b/include/llvm/GlobalVariable.h
index bf638fb..ae3418b 100644
--- a/include/llvm/GlobalVariable.h
+++ b/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: