aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/LLVMContextImpl.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-08-05 00:15:12 +0000
committerOwen Anderson <resistor@mac.com>2009-08-05 00:15:12 +0000
commit7805198fa9275da60017041b1677700141090079 (patch)
treea6ecf18f5d16554b19cec24385be366086494841 /lib/VMCore/LLVMContextImpl.h
parent670400e4733c4a801085e2aa9e5c40cdb3e445a2 (diff)
downloadexternal_llvm-7805198fa9275da60017041b1677700141090079.zip
external_llvm-7805198fa9275da60017041b1677700141090079.tar.gz
external_llvm-7805198fa9275da60017041b1677700141090079.tar.bz2
Privatize the PointerType factory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78130 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 a92b571..993b155 100644
--- a/lib/VMCore/LLVMContextImpl.h
+++ b/lib/VMCore/LLVMContextImpl.h
@@ -130,6 +130,7 @@ struct LLVMContextImpl {
TypeMap<ArrayValType, ArrayType> ArrayTypes;
TypeMap<VectorValType, VectorType> VectorTypes;
+ TypeMap<PointerValType, PointerType> PointerTypes;
LLVMContextImpl() : TheTrueVal(0), TheFalseVal(0) { }
};