From abf73cedd4f1100fae3e4bfe969649e1643e5254 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Thu, 15 Nov 2001 15:23:02 +0000 Subject: [PATCH] Modify method AllocateLocalVar to take size argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1320 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineInstr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.34.1