[llvm-commits] [llvm] r134607 - /llvm/trunk/include/llvm/MC/MCSubtargetInfo.h
Evan Cheng
evan.cheng at apple.com
Thu Jul 7 00:45:49 PDT 2011
Author: evancheng
Date: Thu Jul 7 02:45:49 2011
New Revision: 134607
URL: http://llvm.org/viewvc/llvm-project?rev=134607&view=rev
Log:
Feature bits are 64-bits.
Modified:
llvm/trunk/include/llvm/MC/MCSubtargetInfo.h
Modified: llvm/trunk/include/llvm/MC/MCSubtargetInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCSubtargetInfo.h?rev=134607&r1=134606&r2=134607&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCSubtargetInfo.h (original)
+++ llvm/trunk/include/llvm/MC/MCSubtargetInfo.h Thu Jul 7 02:45:49 2011
@@ -34,7 +34,7 @@
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,
More information about the llvm-commits
mailing list