aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/LLVMContextImpl.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-08-05 18:13:27 +0000
committerOwen Anderson <resistor@mac.com>2009-08-05 18:13:27 +0000
commitde1b565d5b5d74a82ff87c73dd6a7272024d9873 (patch)
treeb86aa6ff4801e88cf30fd677eea652bc71ddba5a /lib/VMCore/LLVMContextImpl.h
parent6d2fba1465feeddc8e6fe991ff3d213d11969a4f (diff)
downloadexternal_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.h1
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) { }
};