[X86] Add 'mmx' to all CPUs that have a version of 'sse' and weren't already enabling...
authorCraig Topper <craig.topper@intel.com>
Wed, 6 Nov 2019 17:58:51 +0000 (09:58 -0800)
committerCraig Topper <craig.topper@intel.com>
Wed, 6 Nov 2019 18:02:40 +0000 (10:02 -0800)
commitba73aad4f64f52f2acb5394210ed829355b44383
tree9ea9616d6453b7df6e4ad5b4bfa0deba7e6f4c03
parenta091f70610687202104ad75a916048a190d872c2
[X86] Add 'mmx' to all CPUs that have a version of 'sse' and weren't already enabling '3dnow'

All SSE capable CPUs have MMX. 3dnow implicitly enables MMX.

We have code that detects if sse is enabled and implicitly enables
MMX unless -mno-mmx is passed. So in most cases we were already
enabling MMX if march passed a CPU that supported SSE.

The exception to this is if you pass -march for a cpu supports SSE
and also pass -mno-sse. We should still enable MMX since its part
of the CPU capability.
clang/lib/Basic/Targets/X86.cpp
clang/test/Preprocessor/x86_target_features.c