Revert previous change to a comment. The BlockAddresses go in the

constant pool so they don't get wrapped separately.

llvm-svn: 85844
This commit is contained in:
Bob Wilson 2009-11-03 00:02:05 +00:00
parent a386d9533b
commit b389f2a04d
1 changed files with 6 additions and 6 deletions

View File

@ -1186,12 +1186,12 @@ ARMTargetLowering::LowerReturn(SDValue Chain,
return result;
}
// ConstantPool, BlockAddress, JumpTable, GlobalAddress, and ExternalSymbol are
// lowered as their target counterpart wrapped in the ARMISD::Wrapper
// node. Suppose N is one of the above mentioned nodes. It has to be wrapped
// because otherwise Select(N) returns N. So the raw TargetGlobalAddress
// nodes, etc. can only be used to form addressing mode. These wrapped nodes
// will be selected into MOVi.
// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
// their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
// one of the above mentioned nodes. It has to be wrapped because otherwise
// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
// be used to form addressing mode. These wrapped nodes will be selected
// into MOVi.
static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
EVT PtrVT = Op.getValueType();
// FIXME there is no actual debug info here