mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 07:31:28 +00:00
Support: Stop using F_{None,Text,Append} compatibility synonyms, NFC
Stop using the compatibility spellings of `OF_{None,Text,Append}`
left behind by 1f67a3cba9
. A follow-up
will remove them.
Differential Revision: https://reviews.llvm.org/D101650
This commit is contained in:
parent
499e89fc91
commit
518d955f9d
@ -122,7 +122,7 @@ void WriteJSON(StringRef JsonPath, llvm::json::Object &&ClassInheritance,
|
||||
}
|
||||
|
||||
std::error_code EC;
|
||||
llvm::raw_fd_ostream JsonOut(JsonPath, EC, llvm::sys::fs::F_Text);
|
||||
llvm::raw_fd_ostream JsonOut(JsonPath, EC, llvm::sys::fs::OF_Text);
|
||||
if (EC)
|
||||
return;
|
||||
|
||||
|
@ -71,7 +71,7 @@ int main(int argc, const char **argv) {
|
||||
|
||||
if (SkipProcessing) {
|
||||
std::error_code EC;
|
||||
llvm::raw_fd_ostream JsonOut(JsonOutputPath, EC, llvm::sys::fs::F_Text);
|
||||
llvm::raw_fd_ostream JsonOut(JsonOutputPath, EC, llvm::sys::fs::OF_Text);
|
||||
if (EC)
|
||||
return 1;
|
||||
JsonOut << formatv("{0:2}", llvm::json::Value(llvm::json::Object()));
|
||||
|
@ -95,10 +95,10 @@ int main(int argc, char **argv) {
|
||||
std::error_code EC;
|
||||
#if HAVE_LLVM >= 0x0600
|
||||
std::unique_ptr<ToolOutputFile> Out(
|
||||
new ToolOutputFile(OutputFilename, EC, sys::fs::F_None));
|
||||
new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None));
|
||||
#else
|
||||
std::unique_ptr<tool_output_file> Out(
|
||||
new tool_output_file(OutputFilename, EC, sys::fs::F_None));
|
||||
new tool_output_file(OutputFilename, EC, sys::fs::OF_None));
|
||||
#endif
|
||||
if (EC) {
|
||||
errs() << EC.message() << '\n';
|
||||
|
@ -1690,7 +1690,7 @@ static void handleLibcall(StringRef name) {
|
||||
// easily.
|
||||
static void writeDependencyFile() {
|
||||
std::error_code ec;
|
||||
raw_fd_ostream os(config->dependencyFile, ec, sys::fs::F_None);
|
||||
raw_fd_ostream os(config->dependencyFile, ec, sys::fs::OF_None);
|
||||
if (ec) {
|
||||
error("cannot open " + config->dependencyFile + ": " + ec.message());
|
||||
return;
|
||||
|
@ -63,7 +63,7 @@ static void writeCFGToDotFile(Function &F, BlockFrequencyInfo *BFI,
|
||||
errs() << "Writing '" << Filename << "'...";
|
||||
|
||||
std::error_code EC;
|
||||
raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
|
||||
raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
|
||||
|
||||
DOTFuncInfo CFGInfo(&F, BFI, BPI, MaxFreq);
|
||||
CFGInfo.setHeatColors(ShowHeatColors);
|
||||
|
@ -274,7 +274,7 @@ bool CallGraphDOTPrinter::runOnModule(Module &M) {
|
||||
errs() << "Writing '" << Filename << "'...";
|
||||
|
||||
std::error_code EC;
|
||||
raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
|
||||
raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
|
||||
|
||||
CallGraph CG(M);
|
||||
CallGraphDOTInfo CFGInfo(&M, &CG, LookupBFI);
|
||||
|
@ -42,7 +42,7 @@ static void writeDDGToDotFile(DataDependenceGraph &G, bool DOnly) {
|
||||
errs() << "Writing '" << Filename << "'...";
|
||||
|
||||
std::error_code EC;
|
||||
raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
|
||||
raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
|
||||
|
||||
if (!EC)
|
||||
// We only provide the constant verson of the DOTGraphTrait specialization,
|
||||
|
@ -96,7 +96,7 @@ static Triple GetTriple(StringRef ProgName, opt::InputArgList &Args) {
|
||||
|
||||
static std::unique_ptr<ToolOutputFile> GetOutputStream(StringRef Path) {
|
||||
std::error_code EC;
|
||||
auto Out = std::make_unique<ToolOutputFile>(Path, EC, sys::fs::F_None);
|
||||
auto Out = std::make_unique<ToolOutputFile>(Path, EC, sys::fs::OF_None);
|
||||
if (EC) {
|
||||
WithColor::error() << EC.message() << '\n';
|
||||
return nullptr;
|
||||
|
@ -35,7 +35,7 @@ std::unique_ptr<llvm::ToolOutputFile>
|
||||
mlir::openOutputFile(StringRef outputFilename, std::string *errorMessage) {
|
||||
std::error_code error;
|
||||
auto result = std::make_unique<llvm::ToolOutputFile>(outputFilename, error,
|
||||
llvm::sys::fs::F_None);
|
||||
llvm::sys::fs::OF_None);
|
||||
if (error) {
|
||||
if (errorMessage)
|
||||
*errorMessage = "cannot open output file '" + outputFilename.str() +
|
||||
|
Loading…
Reference in New Issue
Block a user