mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
d63bba17c6
Implement an analysis in revng which allows renaming the variables of a C function via an LLM.
18 lines
378 B
CMake
18 lines
378 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
revng_add_analyses_library_internal(revngLLMRenameAnalysis
|
|
LLMRenameAnalysis.cpp)
|
|
|
|
target_link_libraries(
|
|
revngLLMRenameAnalysis
|
|
revngTypeNames
|
|
revngModel
|
|
revngSupport
|
|
revngPipeline
|
|
revngPipes
|
|
revngPTML
|
|
revngBasicAnalyses
|
|
${LLVM_LIBRARIES})
|