mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
Model: sunset double name system
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user