Skip to content

Commit c299439

Browse files
committed
Update X86TargetParser.cpp
1 parent 824d96b commit c299439

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

llvm/lib/TargetParser/X86TargetParser.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -627,16 +627,6 @@ void llvm::X86::getFeaturesForCPU(StringRef CPU,
627627
// be used with 64-bit mode.
628628
Bits &= ~Feature64BIT;
629629

630-
// [MSVC Compatibility]
631-
#ifdef _WIN32
632-
// Matches Microsoft's default support.
633-
Bits |= FeatureSSE3;
634-
Bits |= FeatureSSE4_1;
635-
Bits |= FeatureSSE4_2;
636-
Bits |= FeatureINVPCID;
637-
Bits |= FeatureRTM;
638-
#endif
639-
640630
// Add the string version of all set bits.
641631
for (unsigned i = 0; i != CPU_FEATURE_MAX; ++i)
642632
if (Bits[i] && !FeatureInfos[i].getName(NeedPlus).empty())

0 commit comments

Comments
 (0)