aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib.c
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-06-15 08:50:45 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-06-16 06:31:26 +0200
commit11fa45bd6113249befff66ced06d8c8ff451efc9 (patch)
tree90fb361a05bd55553e50447be99000e1162753db /lib.c
parent38a03a5ffc74c55536cf6d86a94b9758a1db076f (diff)
downloadsparse-dev-11fa45bd6113249befff66ced06d8c8ff451efc9.tar.gz
keep the debug flags alphabetically sorted
As often the case, the declaration of the debug flags were done in the order they were added. But after a while this become messy so keep them now alpha-sorted. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib.c b/lib.c
index 1c8ead84..5fab1933 100644
--- a/lib.c
+++ b/lib.c
@@ -283,9 +283,9 @@ int Wvla = 1;
int dump_macro_defs = 0;
-int dbg_entry = 0;
-int dbg_dead = 0;
int dbg_compound = 0;
+int dbg_dead = 0;
+int dbg_entry = 0;
unsigned long fdump_ir;
int fmem_report = 0;
@@ -759,9 +759,9 @@ static char **handle_switch_W(char *arg, char **next)
}
static struct flag debugs[] = {
- { "entry", &dbg_entry},
- { "dead", &dbg_dead},
{ "compound", &dbg_compound},
+ { "dead", &dbg_dead},
+ { "entry", &dbg_entry},
};