[llvm-commits] CVS: llvm-gcc/gcc/llvm-representation.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Mar 2 09:00:17 PST 2005
Changes in directory llvm-gcc/gcc:
llvm-representation.h updated: 1.13 -> 1.14
---
Log message:
reduce gcc warnings.
---
Diffs of the changes: (+3 -3)
llvm-representation.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm-gcc/gcc/llvm-representation.h
diff -u llvm-gcc/gcc/llvm-representation.h:1.13 llvm-gcc/gcc/llvm-representation.h:1.14
--- llvm-gcc/gcc/llvm-representation.h:1.13 Wed Feb 23 11:33:28 2005
+++ llvm-gcc/gcc/llvm-representation.h Wed Mar 2 11:00:02 2005
@@ -287,8 +287,8 @@
*/
struct llvm_function *ForwardedFunction;
- enum llvm_linkage Linkage : 4;
- int MarkedNameUsed : 1;
+ ENUM_BITFIELD (llvm_linkage) Linkage : 4;
+ int MarkedNameUsed : 1;
char *PrettyFunctionName;
} llvm_function;
@@ -310,7 +310,7 @@
llvm_constant *Init; /* Initializer or null for external */
int isConstant : 1; /* Is the global immutable? */
- enum llvm_linkage Linkage : 4;
+ ENUM_BITFIELD (llvm_linkage) Linkage : 4;
int MarkedNameUsed : 1;
/* ForwardedGlobal - This member is here only because we don't have a
More information about the llvm-commits
mailing list