mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-08 05:16:53 +00:00
Get rid of what looks like a copy-and-pasted typo.
Spotted by gcc-4.5. llvm-svn: 69673
This commit is contained in:
parent
5adc7ad39e
commit
58c9c564a9
@ -9075,7 +9075,7 @@ X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
|
||||
}
|
||||
if (DestReg) {
|
||||
Res.first = DestReg;
|
||||
Res.second = Res.second = X86::GR8RegisterClass;
|
||||
Res.second = X86::GR8RegisterClass;
|
||||
}
|
||||
} else if (VT == MVT::i32) {
|
||||
unsigned DestReg = 0;
|
||||
@ -9092,7 +9092,7 @@ X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
|
||||
}
|
||||
if (DestReg) {
|
||||
Res.first = DestReg;
|
||||
Res.second = Res.second = X86::GR32RegisterClass;
|
||||
Res.second = X86::GR32RegisterClass;
|
||||
}
|
||||
} else if (VT == MVT::i64) {
|
||||
unsigned DestReg = 0;
|
||||
@ -9109,7 +9109,7 @@ X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
|
||||
}
|
||||
if (DestReg) {
|
||||
Res.first = DestReg;
|
||||
Res.second = Res.second = X86::GR64RegisterClass;
|
||||
Res.second = X86::GR64RegisterClass;
|
||||
}
|
||||
}
|
||||
} else if (Res.second == X86::FR32RegisterClass ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user