diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-10 04:19:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-10 04:19:31 +0000 |
commit | 618181ea0e128fe7f9c394dc10ac1a497983e5a0 (patch) | |
tree | 8ae34347da648991c6c5a00e7e105f3ac22c6c81 /lib/Bytecode/Writer/SlotCalculator.h | |
parent | 330fce71b2bdaf85fba6972228ee310ebd9141a6 (diff) |
insertvalue's second operand is always false
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/SlotCalculator.h')
-rw-r--r-- | lib/Bytecode/Writer/SlotCalculator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/SlotCalculator.h b/lib/Bytecode/Writer/SlotCalculator.h index 75673182cd..54249a7347 100644 --- a/lib/Bytecode/Writer/SlotCalculator.h +++ b/lib/Bytecode/Writer/SlotCalculator.h @@ -122,7 +122,7 @@ private: // slot that it occupies, or -1 if the declaration is to be ignored // because of the IgnoreNamedNodes flag. // - int insertValue(const Value *D, bool dontIgnore = false); + int insertValue(const Value *V); int insertType(const Type *T); // doInsertValue - Small helper function to be called only be insertVal. |