From: Duncan Sands Date: Tue, 21 Apr 2009 09:44:39 +0000 (+0000) Subject: Get rid of what looks like a copy-and-pasted typo. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=005e7984ccc20c65a3bdfc112021b337935131a9;p=oota-llvm.git Get rid of what looks like a copy-and-pasted typo. Spotted by gcc-4.5. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69673 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 59cf85b792b..d51435cf873 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -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 ||