commit | 46bb70cd23762d58173dbbc4c5a1bd6964624381 | [log] [tgz] |
---|---|---|
author | Hal Finkel <hfinkel@anl.gov> | Tue Oct 18 03:51:57 2011 +0000 |
committer | Hal Finkel <hfinkel@anl.gov> | Tue Oct 18 03:51:57 2011 +0000 |
tree | b6997965c75fe9e112ac21c5c74a4230a0f13813 | |
parent | 0851a29b6d592f6510b5ff17e7607bb3f492fca1 [diff] |
Fix comment to refer to correct instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142334 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 7d76507..309b68b 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -2686,7 +2686,7 @@ } void SelectionDAGBuilder::visitFPExt(const User &I){ - // FPTrunc is never a no-op cast, no need to check + // FPExt is never a no-op cast, no need to check SDValue N = getValue(I.getOperand(0)); EVT DestVT = TLI.getValueType(I.getType()); setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));