From: Vikram S. Adve Date: Thu, 15 Nov 2001 15:23:02 +0000 (+0000) Subject: Modify method AllocateLocalVar to take size argument. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=abf73cedd4f1100fae3e4bfe969649e1643e5254;p=oota-llvm.git Modify method AllocateLocalVar to take size argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1320 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index ca8f1fb1ec9..7444aa4b845 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -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);