Make a release build compile. This field is not really an enum, it's really a bitfield

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4971 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-12-12 05:31:26 +00:00
parent 6a4a4cd837
commit c2799163e2

View File

@ -59,7 +59,7 @@ typedef short DependenceLevel; // 0 means global level outside loops
class Dependence {
DepGraphNode* toOrFromNode;
DependenceType depType:8;
unsigned char depType;
public:
/*ctor*/ Dependence (DepGraphNode* toOrFromN,
@ -78,7 +78,7 @@ public:
/// Get information about the type of dependence.
///
DependenceType getDepType() {
unsigned getDepType() const {
return depType;
}