aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-26 16:28:18 +0000
committerChris Lattner <sabre@nondot.org>2001-07-26 16:28:18 +0000
commita25809dda497426fb8daed1c25212b6c3eb73a5d (patch)
tree9a8bded278e710033bfc9d22b50a7836bdbbb062 /lib/Bytecode
parentc628b1790dab768dd5884cab907c756c9bd1965b (diff)
Add an arg to insertVal to allow us to prevent builtin types from being ignored
when they are inserted git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Writer/SlotCalculator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/SlotCalculator.h b/lib/Bytecode/Writer/SlotCalculator.h
index d5ebe700f5..fbdfbe90ad 100644
--- a/lib/Bytecode/Writer/SlotCalculator.h
+++ b/lib/Bytecode/Writer/SlotCalculator.h
@@ -54,7 +54,7 @@ public:
protected:
// insertVal - Insert a value into the value table...
//
- void insertVal(const Value *D);
+ void insertVal(const Value *D, bool dontIgnore = false);
// visitMethod - This member is called after the constant pool has been
// processed. The default implementation of this is a noop.