[X86] Add Feature64Bit to the 'generic' CPU and remove feature string hacking in...
authorCraig Topper <craig.topper@intel.com>
Thu, 23 Jul 2020 15:52:06 +0000 (08:52 -0700)
committerCraig Topper <craig.topper@intel.com>
Thu, 23 Jul 2020 16:16:18 +0000 (09:16 -0700)
commit5dbcf5e3ccafb90d07b749e437c8e9089eda8516
tree4424309c464bb969cc47a4b7488218cb70f92d87
parent83dca19c11236700d26ebd1ecff65e01876c1e9d
[X86] Add Feature64Bit to the 'generic' CPU and remove feature string hacking in X86Subtarget constructor

Feature64Bit is only used by a check in the X86Subtarget
constructor to ensure that the CPU selected supports 64-bit mode
when the triple is for 64-bit mode.

'generic' is the default CPU in llc and so needs to be able to
pass this check. Previously we did this by detecting the name and
adding the feature to the feature string. But there doesn't seem
to be any reason we can't just add the feature to the CPU directly.
llvm/lib/Target/X86/X86.td
llvm/lib/Target/X86/X86Subtarget.cpp