aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/SlotCalculator.h
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 /include/llvm/SlotCalculator.h
parentc628b1790dab768dd5884cab907c756c9bd1965b (diff)
downloadexternal_llvm-a25809dda497426fb8daed1c25212b6c3eb73a5d.zip
external_llvm-a25809dda497426fb8daed1c25212b6c3eb73a5d.tar.gz
external_llvm-a25809dda497426fb8daed1c25212b6c3eb73a5d.tar.bz2
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 'include/llvm/SlotCalculator.h')
-rw-r--r--include/llvm/SlotCalculator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/SlotCalculator.h b/include/llvm/SlotCalculator.h
index d5ebe70..fbdfbe9 100644
--- a/include/llvm/SlotCalculator.h
+++ b/include/llvm/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.