From 51dbe6e705f3b821042f36d0c7524181d7be7c79 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. llvm-svn: 134607 --- llvm/include/llvm/MC/MCSubtargetInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/MC/MCSubtargetInfo.h b/llvm/include/llvm/MC/MCSubtargetInfo.h index 610a4da9d24a..c66150b17e0f 100644 --- a/llvm/include/llvm/MC/MCSubtargetInfo.h +++ b/llvm/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,