Moving AddLiteralOption's declaration higher up in the header to make gcc happy.
authorChris Bieneman <beanz@apple.com>
Wed, 28 Jan 2015 19:17:09 +0000 (19:17 +0000)
committerChris Bieneman <beanz@apple.com>
Wed, 28 Jan 2015 19:17:09 +0000 (19:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227348 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/CommandLine.h

index 030907c1cf45595921f3300b6873d7e1d8ed1171..9910e7dcd60118387a1e38f91b664133a1b8bca3 100644 (file)
@@ -73,6 +73,18 @@ void AddExtraVersionPrinter(void (*func)());
 // (Currently not perfect, but best-effort.)
 void PrintOptionValues();
 
 // (Currently not perfect, but best-effort.)
 void PrintOptionValues();
 
+// Forward declaration - AddLiteralOption needs to be up here to make gcc happy.
+class Option;
+
+/// \brief Adds a new option for parsing and provides the option it refers to.
+///
+/// \param O pointer to the option
+/// \param Name the string name for the option to handle during parsing
+///
+/// Literal options are used by some parsers to register special option values.
+/// This is how the PassNameParser registers pass names for opt.
+void AddLiteralOption(Option &O, const char *Name);
+
 //===----------------------------------------------------------------------===//
 // Flags permitted to be passed to command line arguments
 //
 //===----------------------------------------------------------------------===//
 // Flags permitted to be passed to command line arguments
 //
@@ -1937,15 +1949,6 @@ void HideUnrelatedOptions(cl::OptionCategory &Category);
 /// option category to display in the -help output.
 void HideUnrelatedOptions(ArrayRef<const cl::OptionCategory *> Categories);
 
 /// option category to display in the -help output.
 void HideUnrelatedOptions(ArrayRef<const cl::OptionCategory *> Categories);
 
-/// \brief Adds a new option for parsing and provides the option it refers to.
-///
-/// \param O pointer to the option
-/// \param Name the string name for the option to handle during parsing
-///
-/// Literal options are used by some parsers to register special option values.
-/// This is how the PassNameParser registers pass names for opt.
-void AddLiteralOption(Option &O, const char *Name);
-
 } // End namespace cl
 
 } // End namespace llvm
 } // End namespace cl
 
 } // End namespace llvm