Files
revng-revng/lib/Model/Importer/DebugInfo/ImportDebugInfoHelper.h
Djordje Todorovic 961f9e5461 Model: search debug info locally upon import
Also find prototypes in Models of dynamic libs for both PE and ELF.
2022-12-13 11:26:54 +01:00

15 lines
342 B
C

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Support/ProgramRunner.h"
namespace {
int runFetchDebugInfoWithLevel(llvm::StringRef InputFileName) {
return ::Runner.run("revng",
{ "model", "fetch-debuginfo", InputFileName.str() });
}
} // namespace