diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-25 06:17:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-25 06:17:51 +0000 |
commit | 10073a9080498f8ce8ad87b425d8bbb5b6536b67 (patch) | |
tree | 10569e0dce9be5b0fc6bb11e55babf9b9f2c170f /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | e680139c346e2e1e09f4574995cca1874abe7f28 (diff) | |
download | llvm-10073a9080498f8ce8ad87b425d8bbb5b6536b67.zip llvm-10073a9080498f8ce8ad87b425d8bbb5b6536b67.tar.gz llvm-10073a9080498f8ce8ad87b425d8bbb5b6536b67.tar.bz2 |
*** empty log message ***
llvm-svn: 3075
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index ce39b45..f32f647 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -139,7 +139,7 @@ int MachineCodeForMethod::computeOffsetforLocalVar(const TargetMachine& target, const Value* val, unsigned int& getPaddedSize, - unsigned int sizeToUse = 0) + unsigned int sizeToUse) { bool growUp; int firstOffset =target.getFrameInfo().getFirstAutomaticVarOffset(*this, @@ -174,7 +174,7 @@ MachineCodeForMethod::computeOffsetforLocalVar(const TargetMachine& target, int MachineCodeForMethod::allocateLocalVar(const TargetMachine& target, const Value* val, - unsigned int sizeToUse = 0) + unsigned int sizeToUse) { assert(! automaticVarsAreaFrozen && "Size of auto vars area has been used to compute an offset so " |