[llvm-commits] CVS: llvm/include/llvm/GlobalVariable.h
Chris Lattner
sabre at nondot.org
Tue Apr 17 11:15:21 PDT 2007
Changes in directory llvm/include/llvm:
GlobalVariable.h updated: 1.42 -> 1.43
---
Log message:
bool on darwin/ppc is 4 bytes.
---
Diffs of the changes: (+2 -2)
GlobalVariable.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/GlobalVariable.h
diff -u llvm/include/llvm/GlobalVariable.h:1.42 llvm/include/llvm/GlobalVariable.h:1.43
--- llvm/include/llvm/GlobalVariable.h:1.42 Mon Apr 16 22:26:42 2007
+++ llvm/include/llvm/GlobalVariable.h Tue Apr 17 13:15:04 2007
@@ -41,8 +41,8 @@
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:
More information about the llvm-commits
mailing list