Bump the size of FeatureBitset up to 96-bits.

This should avoid exceeding the maximum size when I add another subtarget
feature to ARM's subtarget.

llvm-svn: 242754
This commit is contained in:
Akira Hatanaka 2015-07-21 01:39:22 +00:00
parent 8a578bf5d7
commit 566ce1b0bb
1 changed files with 1 additions and 1 deletions

View 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++..