Removed completely duplicated function comment (an identical one appears later).

llvm-svn: 9368
This commit is contained in:
Misha Brukman 2003-10-22 04:55:09 +00:00
parent 980d74c752
commit cc0d34223d
1 changed files with 0 additions and 19 deletions

View File

@ -40,25 +40,6 @@ static inline void Add3OperandInstr(unsigned Opcode, InstructionNode* Node,
}
//---------------------------------------------------------------------------
// Function: GetMemInstArgs
//
// Purpose:
// Get the pointer value and the index vector for a memory operation
// (GetElementPtr, Load, or Store). If all indices of the given memory
// operation are constant, fold in constant indices in a chain of
// preceding GetElementPtr instructions (if any), and return the
// pointer value of the first instruction in the chain.
// All folded instructions are marked so no code is generated for them.
//
// Return values:
// Returns the pointer Value to use.
// Returns the resulting IndexVector in idxVec.
// Returns true/false in allConstantIndices if all indices are/aren't const.
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// Function: FoldGetElemChain
//