[X86] Make the X86ProcFamilyEnum private to X86Subtarget. Removed unneeded 'protected' from X86Subtarget. NFC

This commit is contained in:
Craig Topper 2020-07-23 23:06:46 -07:00
parent 1563973f41
commit 205e8b7e89
1 changed files with 0 additions and 2 deletions

View File

@ -50,7 +50,6 @@ enum class Style {
} // end namespace PICStyles
class X86Subtarget final : public X86GenSubtargetInfo {
public:
// NOTE: Do not add anything new to this list. Coarse, CPU name based flags
// are not a good idea. We should be migrating away from these.
enum X86ProcFamilyEnum {
@ -59,7 +58,6 @@ public:
IntelSLM
};
protected:
enum X86SSEEnum {
NoSSE, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512F
};