diff options
author | Owen Anderson <resistor@mac.com> | 2009-08-05 18:13:27 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-08-05 18:13:27 +0000 |
commit | de1b565d5b5d74a82ff87c73dd6a7272024d9873 (patch) | |
tree | b86aa6ff4801e88cf30fd677eea652bc71ddba5a /lib/VMCore/LLVMContextImpl.h | |
parent | 6d2fba1465feeddc8e6fe991ff3d213d11969a4f (diff) | |
download | external_llvm-de1b565d5b5d74a82ff87c73dd6a7272024d9873.zip external_llvm-de1b565d5b5d74a82ff87c73dd6a7272024d9873.tar.gz external_llvm-de1b565d5b5d74a82ff87c73dd6a7272024d9873.tar.bz2 |
Privatize the FunctionType table.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/LLVMContextImpl.h')
-rw-r--r-- | lib/VMCore/LLVMContextImpl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VMCore/LLVMContextImpl.h b/lib/VMCore/LLVMContextImpl.h index 993b155..3ce1234 100644 --- a/lib/VMCore/LLVMContextImpl.h +++ b/lib/VMCore/LLVMContextImpl.h @@ -131,6 +131,7 @@ struct LLVMContextImpl { TypeMap<ArrayValType, ArrayType> ArrayTypes; TypeMap<VectorValType, VectorType> VectorTypes; TypeMap<PointerValType, PointerType> PointerTypes; + TypeMap<FunctionValType, FunctionType> FunctionTypes; LLVMContextImpl() : TheTrueVal(0), TheFalseVal(0) { } }; |