Revert 102941, we're going to do this via attr and can just

hack the code to turn it off when debugging.

llvm-svn: 103083
This commit is contained in:
Eric Christopher 2010-05-05 07:35:59 +00:00
parent b22ee88652
commit 4e7e4e6b60
1 changed files with 1 additions and 8 deletions

View File

@ -20,14 +20,8 @@
#include "llvm/Support/FormattedStream.h"
#include "llvm/Target/TargetOptions.h"
#include "llvm/Target/TargetRegistry.h"
#include "llvm/Support/CommandLine.h"
using namespace llvm;
static cl::opt<bool> DisableSSEDomain("disable-sse-domain",
cl::init(false), cl::Hidden,
cl::desc("Disable SSE Domain Fixing"));
static MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
Triple TheTriple(TT);
switch (TheTriple.getOS()) {
@ -178,8 +172,7 @@ bool X86TargetMachine::addPostRegAlloc(PassManagerBase &PM,
bool X86TargetMachine::addPreEmitPass(PassManagerBase &PM,
CodeGenOpt::Level OptLevel) {
if (OptLevel != CodeGenOpt::None && Subtarget.hasSSE2() &&
!DisableSSEDomain) {
if (OptLevel != CodeGenOpt::None && Subtarget.hasSSE2()) {
PM.add(createSSEDomainFixPass());
return true;
}