diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-03 21:54:14 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-03 21:54:14 +0000 |
commit | 4e4aa7053503a00c29fadaec82e2f399bc9da492 (patch) | |
tree | d96c4bb1895e44a477fa4131e76d73bbbea3836d /llvm/lib/Bitcode/Writer/ValueEnumerator.h | |
parent | 37cd4d0f42c31cc0c933069e528e65deaeb94477 (diff) | |
download | bcm5719-llvm-4e4aa7053503a00c29fadaec82e2f399bc9da492.tar.gz bcm5719-llvm-4e4aa7053503a00c29fadaec82e2f399bc9da492.zip |
IR: Assembly and bitcode for GenericDebugNode
llvm-svn: 228041
Diffstat (limited to 'llvm/lib/Bitcode/Writer/ValueEnumerator.h')
-rw-r--r-- | llvm/lib/Bitcode/Writer/ValueEnumerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Writer/ValueEnumerator.h b/llvm/lib/Bitcode/Writer/ValueEnumerator.h index 043c4925b39..ab61584baad 100644 --- a/llvm/lib/Bitcode/Writer/ValueEnumerator.h +++ b/llvm/lib/Bitcode/Writer/ValueEnumerator.h @@ -66,6 +66,7 @@ private: MetadataMapType MDValueMap; bool HasMDString; bool HasMDLocation; + bool HasGenericDebugNode; typedef DenseMap<AttributeSet, unsigned> AttributeGroupMapType; AttributeGroupMapType AttributeGroupMap; @@ -120,6 +121,7 @@ public: bool hasMDString() const { return HasMDString; } bool hasMDLocation() const { return HasMDLocation; } + bool hasGenericDebugNode() const { return HasGenericDebugNode; } unsigned getTypeID(Type *T) const { TypeMapType::const_iterator I = TypeMap.find(T); |