From: Evan Cheng Date: Thu, 7 Jul 2011 07:45:49 +0000 (+0000) Subject: Feature bits are 64-bits. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=347c50a2933f756097fa5798f2b6c34a19df4162;p=oota-llvm.git Feature bits are 64-bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134607 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCSubtargetInfo.h b/include/llvm/MC/MCSubtargetInfo.h index 610a4da9d24..c66150b17e0 100644 --- a/include/llvm/MC/MCSubtargetInfo.h +++ b/include/llvm/MC/MCSubtargetInfo.h @@ -34,7 +34,7 @@ class MCSubtargetInfo { const unsigned *ForwardingPathes; // Forwarding pathes unsigned NumFeatures; // Number of processor features unsigned NumProcs; // Number of processors - unsigned FeatureBits; // Feature bits for current CPU + uint64_t FeatureBits; // Feature bits for current CPU public: void InitMCSubtargetInfo(StringRef CPU, StringRef FS,