mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 17:33:24 +00:00
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:
parent
6a4a4cd837
commit
c2799163e2
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user