aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMartell Malone <martellmalone@gmail.com>2017-08-23 02:33:42 +0000
committerMartell Malone <martellmalone@gmail.com>2017-08-23 02:33:42 +0000
commitf1bdca078dfc78894439f6838ce089a4d7fe57e0 (patch)
tree47641bb819359f2d5496a4b1f848f6e717ee306d /lib
parent3b49b22ffd1b3be1bd3f97e4444740a9d965a465 (diff)
NFC: LLD fix OptTable Variable Name Style
git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@311518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Driver/DarwinLdDriver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Driver/DarwinLdDriver.cpp b/lib/Driver/DarwinLdDriver.cpp
index f564d8cb8..120484b48 100644
--- a/lib/Driver/DarwinLdDriver.cpp
+++ b/lib/Driver/DarwinLdDriver.cpp
@@ -74,7 +74,7 @@ enum {
#undef PREFIX
// Create table mapping all options defined in DarwinLdOptions.td
-static const llvm::opt::OptTable::Info infoTable[] = {
+static const llvm::opt::OptTable::Info InfoTable[] = {
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
HELPTEXT, METAVAR, VALUES) \
{PREFIX, NAME, HELPTEXT, \
@@ -88,7 +88,7 @@ static const llvm::opt::OptTable::Info infoTable[] = {
// Create OptTable class for parsing actual command line arguments
class DarwinLdOptTable : public llvm::opt::OptTable {
public:
- DarwinLdOptTable() : OptTable(infoTable) {}
+ DarwinLdOptTable() : OptTable(InfoTable) {}
};
static std::vector<std::unique_ptr<File>>