forked from OSchip/llvm-project
[X86] Make the X86ProcFamilyEnum private to X86Subtarget. Removed unneeded 'protected' from X86Subtarget. NFC
This commit is contained in:
parent
1563973f41
commit
205e8b7e89
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue