diff options
author | Owen Anderson <resistor@mac.com> | 2009-08-05 00:15:12 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-08-05 00:15:12 +0000 |
commit | 7805198fa9275da60017041b1677700141090079 (patch) | |
tree | a6ecf18f5d16554b19cec24385be366086494841 /lib/VMCore/LLVMContextImpl.h | |
parent | 670400e4733c4a801085e2aa9e5c40cdb3e445a2 (diff) | |
download | external_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.h | 1 |
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) { } }; |