From c2799163e2d8bb6a1d2c93ab4f0911da75b87ad4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 12 Dec 2002 05:31:26 +0000 Subject: [PATCH] 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 --- include/llvm/Analysis/DependenceGraph.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Analysis/DependenceGraph.h b/include/llvm/Analysis/DependenceGraph.h index 9c803f0a119..d2f3ad50145 100644 --- a/include/llvm/Analysis/DependenceGraph.h +++ b/include/llvm/Analysis/DependenceGraph.h @@ -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; }