Use non virtual destructors for sections.
[oota-llvm.git] / include / llvm / MC / SubtargetFeature.h
index 2fb9b4ae2503f14ee7ace7c8b55db2e0c6c24a54..8edd798f1530002fb9435b564da897588e3ea4b3 100644 (file)
@@ -30,7 +30,7 @@ namespace llvm {
 // A container class for subtarget features.
 // This is convenient because std::bitset does not have a constructor
 // with an initializer list of set bits.
-const unsigned MAX_SUBTARGET_FEATURES = 64;
+const unsigned MAX_SUBTARGET_FEATURES = 96;
 class FeatureBitset : public std::bitset<MAX_SUBTARGET_FEATURES> {
 public:
   // Cannot inherit constructors because it's not supported by VC++..