From 1f51841a41b98ecaed25d84c848fc161d8d18e2a Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Mon, 16 Nov 2015 16:50:45 +0100 Subject: Added now option to control debug output. The new option gdepth subumes the gonly-globals. The option allows it to control the level of information that is produced. This option allows it to generate debugging inforation for: -Only globals -Global and local variables but without location information for the local variable -Full information Bug 17638. --- driver/Clflags.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'driver/Clflags.ml') diff --git a/driver/Clflags.ml b/driver/Clflags.ml index 1eaa5449..6c2cc661 100644 --- a/driver/Clflags.ml +++ b/driver/Clflags.ml @@ -47,7 +47,7 @@ let option_dasm = ref false let option_sdump = ref false let option_g = ref false let option_gdwarf = ref 2 -let option_gglobal = ref false +let option_gdepth = ref 3 let option_o = ref (None: string option) let option_E = ref false let option_S = ref false -- cgit