mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 08:41:44 +00:00
DebugInfo: Move an assertion into MDCompositeTypeBase
In the name of gutting the `DIDescriptor` hierarchy. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234829 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f016115f60
commit
d48d32bba9
@ -350,10 +350,7 @@ public:
|
|||||||
MDCompositeTypeBase *operator->() const { return get(); }
|
MDCompositeTypeBase *operator->() const { return get(); }
|
||||||
MDCompositeTypeBase &operator*() const { return *get(); }
|
MDCompositeTypeBase &operator*() const { return *get(); }
|
||||||
|
|
||||||
DIArray getElements() const {
|
DIArray getElements() const { return get()->getElements(); }
|
||||||
assert(!isa<MDSubroutineType>(*this) && "no elements for DISubroutineType");
|
|
||||||
return DIArray(get()->getElements());
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned getRunTimeLang() const { return get()->getRuntimeLang(); }
|
unsigned getRunTimeLang() const { return get()->getRuntimeLang(); }
|
||||||
DITypeRef getContainingType() const { return get()->getVTableHolder(); }
|
DITypeRef getContainingType() const { return get()->getVTableHolder(); }
|
||||||
|
@ -786,7 +786,13 @@ protected:
|
|||||||
~MDCompositeTypeBase() = default;
|
~MDCompositeTypeBase() = default;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/// \brief Get the elements of the composite type.
|
||||||
|
///
|
||||||
|
/// \note Calling this is only valid for \a MDCompositeType. This assertion
|
||||||
|
/// can be removed once \a MDSubroutineType has been separated from
|
||||||
|
/// "composite types".
|
||||||
DebugNodeArray getElements() const {
|
DebugNodeArray getElements() const {
|
||||||
|
assert(!isa<MDSubroutineType>(this) && "no elements for DISubroutineType");
|
||||||
return cast_or_null<MDTuple>(getRawElements());
|
return cast_or_null<MDTuple>(getRawElements());
|
||||||
}
|
}
|
||||||
MDTypeRef getVTableHolder() const { return MDTypeRef(getRawVTableHolder()); }
|
MDTypeRef getVTableHolder() const { return MDTypeRef(getRawVTableHolder()); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user