mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
DebugInfo: Move DIFlag-related API from DIDescriptor to DebugNode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234274 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -175,6 +175,16 @@ public:
|
||||
FlagAccessibility = FlagPrivate | FlagProtected | FlagPublic
|
||||
};
|
||||
|
||||
static unsigned getFlag(StringRef Flag);
|
||||
static const char *getFlagString(unsigned Flag);
|
||||
|
||||
/// \brief Split up a flags bitfield.
|
||||
///
|
||||
/// Split \c Flags into \c SplitFlags, a vector of its components. Returns
|
||||
/// any remaining (unrecognized) bits.
|
||||
static unsigned splitFlags(unsigned Flags,
|
||||
SmallVectorImpl<unsigned> &SplitFlags);
|
||||
|
||||
DebugNodeRef getRef() const { return DebugNodeRef::get(this); }
|
||||
|
||||
static bool classof(const Metadata *MD) {
|
||||
|
Reference in New Issue
Block a user