aboutsummaryrefslogtreecommitdiff
path: root/lld/MinGW/Driver.cpp
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2024-04-05 08:15:35 +0000
committerDavid Spickett <david.spickett@linaro.org>2024-04-05 08:15:35 +0000
commit67d20412b448533c77f54ac7a1e5d0775d273729 (patch)
tree3e15f1784170d0cd59582d4f0089e6aaafa88b4c /lld/MinGW/Driver.cpp
parent7e958f64efea6cb824e96ace51e021afbc150922 (diff)
downloadllvm-67d20412b448533c77f54ac7a1e5d0775d273729.zip
llvm-67d20412b448533c77f54ac7a1e5d0775d273729.tar.gz
llvm-67d20412b448533c77f54ac7a1e5d0775d273729.tar.bz2
Revert "[flang][clang] Add Visibility specific help text for options (#81869)"
This reverts commit 7e958f64efea6cb824e96ace51e021afbc150922. Failing on multiple bots.
Diffstat (limited to 'lld/MinGW/Driver.cpp')
-rw-r--r--lld/MinGW/Driver.cpp20
1 files changed, 5 insertions, 15 deletions
diff --git a/lld/MinGW/Driver.cpp b/lld/MinGW/Driver.cpp
index 0d55d5b..bb08c77 100644
--- a/lld/MinGW/Driver.cpp
+++ b/lld/MinGW/Driver.cpp
@@ -69,21 +69,11 @@ enum {
// Create table mapping all options defined in Options.td
static constexpr opt::OptTable::Info infoTable[] = {
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, \
- VISIBILITY, PARAM, HELPTEXT, HELPTEXTSFORVARIANTS, METAVAR, \
- VALUES) \
- {PREFIX, \
- NAME, \
- HELPTEXT, \
- HELPTEXTSFORVARIANTS, \
- METAVAR, \
- OPT_##ID, \
- opt::Option::KIND##Class, \
- PARAM, \
- FLAGS, \
- VISIBILITY, \
- OPT_##GROUP, \
- OPT_##ALIAS, \
- ALIASARGS, \
+ VISIBILITY, PARAM, HELPTEXT, METAVAR, VALUES) \
+ {PREFIX, NAME, HELPTEXT, \
+ METAVAR, OPT_##ID, opt::Option::KIND##Class, \
+ PARAM, FLAGS, VISIBILITY, \
+ OPT_##GROUP, OPT_##ALIAS, ALIASARGS, \
VALUES},
#include "Options.inc"
#undef OPTION