mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Revert "Enable -sse-domain-fix by default. What could possibly go wrong?"
Not running 'make check-all' before committing is a bad idea. llvm-svn: 99933
This commit is contained in:
parent
488d04e4e8
commit
ead811461a
@ -23,6 +23,11 @@
|
|||||||
#include "llvm/Target/TargetRegistry.h"
|
#include "llvm/Target/TargetRegistry.h"
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
|
static cl::opt<bool>
|
||||||
|
SSEDomainFix("sse-domain-fix",
|
||||||
|
cl::desc("Enable fixing of SSE execution domain"),
|
||||||
|
cl::init(false), cl::Hidden);
|
||||||
|
|
||||||
static MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
|
static MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
|
||||||
Triple TheTriple(TT);
|
Triple TheTriple(TT);
|
||||||
switch (TheTriple.getOS()) {
|
switch (TheTriple.getOS()) {
|
||||||
@ -172,7 +177,7 @@ bool X86TargetMachine::addPostRegAlloc(PassManagerBase &PM,
|
|||||||
|
|
||||||
bool X86TargetMachine::addPreEmitPass(PassManagerBase &PM,
|
bool X86TargetMachine::addPreEmitPass(PassManagerBase &PM,
|
||||||
CodeGenOpt::Level OptLevel) {
|
CodeGenOpt::Level OptLevel) {
|
||||||
if (OptLevel != CodeGenOpt::None && Subtarget.hasSSE2()) {
|
if (SSEDomainFix && OptLevel != CodeGenOpt::None && Subtarget.hasSSE2()) {
|
||||||
PM.add(createSSEDomainFixPass());
|
PM.add(createSSEDomainFixPass());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user