diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-31 22:45:43 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-31 22:45:43 +0000 |
commit | 7e3142b0126abc86dc4da350e8b84b001c3eedde (patch) | |
tree | e94f6a29e29fd037e8844cd8b4b5a1d9348546d4 /include | |
parent | 8d91955d2b985bfbb70aeadcd5fed0d68f939000 (diff) | |
download | external_llvm-7e3142b0126abc86dc4da350e8b84b001c3eedde.zip external_llvm-7e3142b0126abc86dc4da350e8b84b001c3eedde.tar.gz external_llvm-7e3142b0126abc86dc4da350e8b84b001c3eedde.tar.bz2 |
Privatize all but one of the remaining constant tables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/LLVMContext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/LLVMContext.h b/include/llvm/LLVMContext.h index 038ee35..05f0ddb 100644 --- a/include/llvm/LLVMContext.h +++ b/include/llvm/LLVMContext.h @@ -63,6 +63,9 @@ class LLVMContext { friend class ConstantAggregateZero; friend class MDNode; friend class MDString; + friend class ConstantPointerNull; + friend class UndefValue; + friend class ConstantExpr; public: LLVMContext(); ~LLVMContext(); |