Modify method AllocateLocalVar to take size argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1320 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2001-11-15 15:23:02 +00:00
parent 345bcc8be1
commit abf73cedd4

View File

@ -587,7 +587,8 @@ public:
inline void markAsLeafMethod() { compiledAsLeaf = true; }
int allocateLocalVar (const TargetMachine& target,
const Value* local);
const Value* local,
unsigned int size = 0);
int allocateSpilledValue (const TargetMachine& target,
const Type* type);