summaryrefslogtreecommitdiffstats
path: root/lld/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
commit8cd2f139385a5b2777c6b9b0a606561c51ffa47b (patch)
tree4453c2d9345d9cbe1b5125877323c1b44514207b /lld/lib
parentcc82cdfffcbc007c377778c87e690d630b8520d9 (diff)
downloadbcm5719-llvm-8cd2f139385a5b2777c6b9b0a606561c51ffa47b.tar.gz
bcm5719-llvm-8cd2f139385a5b2777c6b9b0a606561c51ffa47b.zip
NFC: LLD fix OptTable Variable Name Style
llvm-svn: 311518
Diffstat (limited to 'lld/lib')
-rw-r--r--lld/lib/Driver/DarwinLdDriver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/lib/Driver/DarwinLdDriver.cpp b/lld/lib/Driver/DarwinLdDriver.cpp
index f564d8cb8d7..120484b4869 100644
--- a/lld/lib/Driver/DarwinLdDriver.cpp
+++ b/lld/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>>
OpenPOWER on IntegriCloud