mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Silence a warning in conditional expression.
Fixes a gcc warning caused by a typo. A redundant assignment operation was accidentally used as the third operand of a conditional expression. No functional change intended. llvm-svn: 213061
This commit is contained in:
parent
d2c35e9525
commit
d6b74facab
@ -2919,7 +2919,7 @@ bool X86FastISel::FastLowerCall(CallLoweringInfo &CLI) {
|
||||
MachineInstrBuilder MIB;
|
||||
if (CalleeOp) {
|
||||
// Register-indirect call.
|
||||
unsigned CallOpc = Is64Bit ? X86::CALL64r : CallOpc = X86::CALL32r;
|
||||
unsigned CallOpc = Is64Bit ? X86::CALL64r : X86::CALL32r;
|
||||
MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc))
|
||||
.addReg(CalleeOp);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user