Files
Ivan Krysak 25538385c8 Avoid using !! unless necessary
The only necessary place is when passing it into the  `BOOST_TEST`
macro, which doesn't convert its argument to `bool` internally.
2025-10-13 10:26:41 +03:00

37 lines
949 B
C++

/// \file GlobalsMap.cpp
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include <system_error>
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"
#include "revng/Pipeline/GlobalsMap.h"
using namespace std;
using namespace pipeline;
using namespace llvm;
llvm::Error GlobalsMap::store(const revng::DirectoryPath &Path) const {
for (const auto &Global : Map) {
revng::FilePath Filename = Path.getFile(Global.first);
if (auto Error = Global.second->store(Filename); Error)
return Error;
}
return llvm::Error::success();
}
llvm::Error GlobalsMap::load(const revng::DirectoryPath &Path) {
for (const auto &Global : Map) {
revng::FilePath Filename = Path.getFile(Global.first);
if (auto Error = Global.second->load(Filename); Error)
return Error;
}
return llvm::Error::success();
}