[X86] Remove some code that tries to disable HLE feature. This feature flag was removed from the backend.

llvm-svn: 299416
This commit is contained in:
Craig Topper 2017-04-04 06:38:44 +00:00
parent 1f9b00117c
commit 451eedd3b6
1 changed files with 0 additions and 1 deletions

View File

@ -130,7 +130,6 @@ void x86::getX86TargetFeatures(const Driver &D, const llvm::Triple &Triple,
Features.push_back("-aes"); Features.push_back("-aes");
Features.push_back("-pclmul"); Features.push_back("-pclmul");
Features.push_back("-rtm"); Features.push_back("-rtm");
Features.push_back("-hle");
Features.push_back("-fsgsbase"); Features.push_back("-fsgsbase");
} }