mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Fix copy paste comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220581 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
68b02dcd54
commit
a36665918f
@ -5899,12 +5899,12 @@ bool SelectionDAGBuilder::visitUnaryFloatCall(const CallInst &I,
|
||||
return true;
|
||||
}
|
||||
|
||||
/// visitBinaryFloatCall - If a call instruction is a unary floating-point
|
||||
/// visitBinaryFloatCall - If a call instruction is a binary floating-point
|
||||
/// operation (as expected), translate it to an SDNode with the specified opcode
|
||||
/// and return true.
|
||||
bool SelectionDAGBuilder::visitBinaryFloatCall(const CallInst &I,
|
||||
unsigned Opcode) {
|
||||
// Sanity check that it really is a unary floating-point call.
|
||||
// Sanity check that it really is a binary floating-point call.
|
||||
if (I.getNumArgOperands() != 2 ||
|
||||
!I.getArgOperand(0)->getType()->isFloatingPointTy() ||
|
||||
I.getType() != I.getArgOperand(0)->getType() ||
|
||||
|
Loading…
Reference in New Issue
Block a user