mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Remove code to enable execution dependency fix pass on VR256. VR128 is sufficient after r144636.
llvm-svn: 144777
This commit is contained in:
parent
ab9e2ad9c4
commit
d842079270
@ -135,15 +135,9 @@ bool X86TargetMachine::addPostRegAlloc(PassManagerBase &PM,
|
||||
bool X86TargetMachine::addPreEmitPass(PassManagerBase &PM,
|
||||
CodeGenOpt::Level OptLevel) {
|
||||
bool ShouldPrint = false;
|
||||
if (OptLevel != CodeGenOpt::None) {
|
||||
if (Subtarget.hasXMMInt()) {
|
||||
PM.add(createExecutionDependencyFixPass(&X86::VR128RegClass));
|
||||
ShouldPrint = true;
|
||||
}
|
||||
if (Subtarget.hasAVX()) {
|
||||
PM.add(createExecutionDependencyFixPass(&X86::VR256RegClass));
|
||||
ShouldPrint = true;
|
||||
}
|
||||
if (OptLevel != CodeGenOpt::None && Subtarget.hasXMMInt()) {
|
||||
PM.add(createExecutionDependencyFixPass(&X86::VR128RegClass));
|
||||
ShouldPrint = true;
|
||||
}
|
||||
|
||||
if (Subtarget.hasAVX() && UseVZeroUpper) {
|
||||
|
Loading…
Reference in New Issue
Block a user