#ifndef LLVM_MC_MCTARGETOPTIONSCOMMANDFLAGS_H
#define LLVM_MC_MCTARGETOPTIONSCOMMANDFLAGS_H
#include <optional>
#include <string>
namespace llvm {
class MCTargetOptions;
enum class EmitDwarfUnwindType;
namespace mc {
bool getRelaxAll();
std::optional<bool> getExplicitRelaxAll();
bool getIncrementalLinkerCompatible();
bool getFDPIC();
int getDwarfVersion();
bool getDwarf64();
EmitDwarfUnwindType getEmitDwarfUnwind();
bool getEmitCompactUnwindNonCanonical();
bool getShowMCInst();
bool getFatalWarnings();
bool getNoWarn();
bool getNoDeprecatedWarn();
bool getNoTypeCheck();
bool getSaveTempLabels();
bool getCrel();
bool getImplicitMapSyms();
bool getX86RelaxRelocations();
bool getX86Sse2Avx();
std::string getABIName();
std::string getAsSecureLogFile();
struct RegisterMCTargetOptionsFlags { … };
MCTargetOptions InitMCTargetOptionsFromFlags();
}
}
#endif