diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-04 00:18:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-04 00:18:37 +0000 |
commit | 064e9a9ef8e995ab986e0500e603612deac5bd2f (patch) | |
tree | 80efa225f6ad88180723bee90373eda6ccccad8b /include/llvm/Bytecode | |
parent | 45b5dd29183cdcca8c75e6d3aac992bbc41528b3 (diff) | |
download | external_llvm-064e9a9ef8e995ab986e0500e603612deac5bd2f.zip external_llvm-064e9a9ef8e995ab986e0500e603612deac5bd2f.tar.gz external_llvm-064e9a9ef8e995ab986e0500e603612deac5bd2f.tar.bz2 |
The Type* is redundant with the TypeSlot
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15451 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r-- | include/llvm/Bytecode/BytecodeHandler.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Bytecode/BytecodeHandler.h b/include/llvm/Bytecode/BytecodeHandler.h index 1de9c58..687bf80 100644 --- a/include/llvm/Bytecode/BytecodeHandler.h +++ b/include/llvm/Bytecode/BytecodeHandler.h @@ -158,8 +158,7 @@ public: virtual void handleCompactionTableValue( unsigned i, ///< Index in the compaction table's type plane unsigned TypSlot, ///< The slot (plane) of the type of this value - unsigned ValSlot, ///< The global value slot of the value - const Type* ///< The resolved type of the value. + unsigned ValSlot ///< The global value slot of the value ) {} /// @brief Handle end of a compaction table |