mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Convert MC command line option for fatal assembler warnings into a
proper flag. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216471 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -24,6 +24,7 @@ public:
|
||||
|
||||
bool MCRelaxAll : 1;
|
||||
bool MCNoExecStack : 1;
|
||||
bool MCFatalWarnings : 1;
|
||||
bool MCSaveTempLabels : 1;
|
||||
bool MCUseDwarfDirectory : 1;
|
||||
bool ShowMCEncoding : 1;
|
||||
@@ -38,12 +39,13 @@ inline bool operator==(const MCTargetOptions &LHS, const MCTargetOptions &RHS) {
|
||||
return (ARE_EQUAL(SanitizeAddress) &&
|
||||
ARE_EQUAL(MCRelaxAll) &&
|
||||
ARE_EQUAL(MCNoExecStack) &&
|
||||
ARE_EQUAL(MCFatalWarnings) &&
|
||||
ARE_EQUAL(MCSaveTempLabels) &&
|
||||
ARE_EQUAL(MCUseDwarfDirectory) &&
|
||||
ARE_EQUAL(ShowMCEncoding) &&
|
||||
ARE_EQUAL(ShowMCInst) &&
|
||||
ARE_EQUAL(AsmVerbose) &&
|
||||
ARE_EQUAL(DwarfVersion));
|
||||
ARE_EQUAL(DwarfVersion));
|
||||
#undef ARE_EQUAL
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user