From 347c50a2933f756097fa5798f2b6c34a19df4162 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 7 Jul 2011 07:45:49 +0000 Subject: [PATCH] Feature bits are 64-bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134607 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCSubtargetInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.11.0