@@ -48,12 +48,12 @@ struct BasicSubtargetFeatureKV {
4848 return StringRef (Key) < StringRef (Other.Key );
4949 }
5050 BasicSubtargetFeatureKV (const char *Key, unsigned Value,
51- FeatureBitArray Implies)
51+ FeatureBitArray Implies)
5252 : Key(Key), Value(Value), Implies(Implies) {}
5353};
5454
5555struct SubtargetFeatureKV : BasicSubtargetFeatureKV {
56- const char *Desc; // /< Help descriptor
56+ const char *Desc; // /< Help descriptor
5757 SubtargetFeatureKV (const char *Key, const char *Desc, unsigned Value,
5858 FeatureBitArray Implies)
5959 : BasicSubtargetFeatureKV(Key, Value, Implies), Desc(Desc) {}
@@ -63,8 +63,8 @@ struct SubtargetFeatureKV : BasicSubtargetFeatureKV {
6363
6464// / Used to provide key value pairs for feature and CPU bit flags.
6565struct BasicSubtargetSubTypeKV {
66- const char *Key; // /< K-V key string
67- FeatureBitArray Implies; // /< K-V bit mask
66+ const char *Key; // /< K-V key string
67+ FeatureBitArray Implies; // /< K-V bit mask
6868
6969 // / Compare routine for std::lower_bound
7070 bool operator <(StringRef S) const {
0 commit comments