From bcbbb3987d06a757b90e32b87716f9af8db9565b Mon Sep 17 00:00:00 2001 From: George Rimar Date: Wed, 7 Sep 2016 11:43:18 +0000 Subject: [PATCH] [ELF] - Sort command line options. NFC. llvm-svn: 280803 --- lld/ELF/Options.td | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lld/ELF/Options.td b/lld/ELF/Options.td index d8ef1b3..fdc1874 100644 --- a/lld/ELF/Options.td +++ b/lld/ELF/Options.td @@ -74,6 +74,9 @@ def fatal_warnings: F<"fatal-warnings">, def fini: S<"fini">, MetaVarName<"">, HelpText<"Specify a finalizer function">; +def gc_sections: F<"gc-sections">, + HelpText<"Enable garbage collection of unused sections">; + def hash_style: S<"hash-style">, HelpText<"Specify hash style (sysv, gnu or both)">; @@ -83,9 +86,6 @@ def icf: F<"icf=all">, HelpText<"Enable identical code folding">; def image_base : J<"image-base=">, HelpText<"Set the base address">; -def gc_sections: F<"gc-sections">, - HelpText<"Enable garbage collection of unused sections">; - def init: S<"init">, MetaVarName<"">, HelpText<"Specify an initializer function">; -- 2.7.4