Add an arg to insertVal to allow us to prevent builtin types from being ignored
authorChris Lattner <sabre@nondot.org>
Thu, 26 Jul 2001 16:28:18 +0000 (16:28 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Jul 2001 16:28:18 +0000 (16:28 +0000)
when they are inserted

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/SlotCalculator.h
include/llvm/SlotCalculator.h
lib/Bytecode/Writer/SlotCalculator.h

index d5ebe700f5ef89dbfe0c0067aa2b38c6fc26d200..fbdfbe90ad4b65f55d485f47c04a39b9be36fcb8 100644 (file)
@@ -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.
index d5ebe700f5ef89dbfe0c0067aa2b38c6fc26d200..fbdfbe90ad4b65f55d485f47c04a39b9be36fcb8 100644 (file)
@@ -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.
index d5ebe700f5ef89dbfe0c0067aa2b38c6fc26d200..fbdfbe90ad4b65f55d485f47c04a39b9be36fcb8 100644 (file)
@@ -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.