Files
revng-revng/include/revng/Model/Pass/DeduplicateCollidingNames.h
2025-04-17 11:19:17 +03:00

16 lines
362 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Model/Binary.h"
namespace model {
/// This looks for groups of names are duplicates of each other and appends
/// arbitrary suffixes to prevent collisions.
void deduplicateCollidingNames(TupleTree<model::Binary> &Binary);
} // namespace model