Modify method AllocateLocalVar to take size argument.
authorVikram S. Adve <vadve@cs.uiuc.edu>
Thu, 15 Nov 2001 15:23:02 +0000 (15:23 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Thu, 15 Nov 2001 15:23:02 +0000 (15:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1320 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineInstr.h

index ca8f1fb1ec9db62a6fa8af957b039e031051ee80..7444aa4b845fbc43b5842ad12068659f44494cca 100644 (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);