Displaying 1 result from an estimated 1 matches for "removeallmetadata".
2010 Apr 24
2
[LLVMdev] Proposal for Adding MetaData to a BasicBlock
...ar *Kind, MDNode *Node);
private:
// These are all implemented in Metadata.cpp.
MDNode *getMetadataImpl(unsigned KindID) const;
MDNode *getMetadataImpl(const char *Kind) const;
void getAllMetadataImpl(SmallVectorImpl<std::pair<unsigned,MDNode*> >
&)const;
void removeAllMetadata();
I noticed that BasicBlock seems to be referenced by almost every class in
LLVM, so I wanted to ask which particular client classes I will need to
update so I don't break any existing code. It seems to me, that all I'm
doing is adding code, so I shouldn't break any of the client cla...