Model: sunset double name system

This commit is contained in:
Ivan Krysak
2024-12-12 09:17:07 +02:00
parent 25790b5a78
commit f070f1f1e1
208 changed files with 706 additions and 1543 deletions
@@ -343,9 +343,8 @@ bool FunctionEdgeBase::verify(model::VerifyHelper &VH) const {
return true;
}
model::Identifier BasicBlock::name() const {
using llvm::Twine;
return model::Identifier(std::string("bb_") + ID().toString());
std::string BasicBlock::name() const {
return "bb_" + ID().toString();
}
bool BasicBlock::verify() const {