mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
CLI: remove --verbose-ast and --verbose-tokenize
closes #9034 These options were listed under the "Debug Options (Zig Compiler Development)" heading. Anything in this section should be considered unstable and can be modified at any time at any developer's discretion.
This commit is contained in:
parent
d128ec39df
commit
5e63baae8d
12 changed files with 18 additions and 68 deletions
|
|
@ -74,9 +74,7 @@ clang_passthrough_mode: bool,
|
||||||
clang_preprocessor_mode: ClangPreprocessorMode,
|
clang_preprocessor_mode: ClangPreprocessorMode,
|
||||||
/// Whether to print clang argvs to stdout.
|
/// Whether to print clang argvs to stdout.
|
||||||
verbose_cc: bool,
|
verbose_cc: bool,
|
||||||
verbose_tokenize: bool,
|
verbose_air: bool,
|
||||||
verbose_ast: bool,
|
|
||||||
verbose_ir: bool,
|
|
||||||
verbose_llvm_ir: bool,
|
verbose_llvm_ir: bool,
|
||||||
verbose_cimport: bool,
|
verbose_cimport: bool,
|
||||||
verbose_llvm_cpu_features: bool,
|
verbose_llvm_cpu_features: bool,
|
||||||
|
|
@ -698,9 +696,7 @@ pub const InitOptions = struct {
|
||||||
clang_passthrough_mode: bool = false,
|
clang_passthrough_mode: bool = false,
|
||||||
verbose_cc: bool = false,
|
verbose_cc: bool = false,
|
||||||
verbose_link: bool = false,
|
verbose_link: bool = false,
|
||||||
verbose_tokenize: bool = false,
|
verbose_air: bool = false,
|
||||||
verbose_ast: bool = false,
|
|
||||||
verbose_ir: bool = false,
|
|
||||||
verbose_llvm_ir: bool = false,
|
verbose_llvm_ir: bool = false,
|
||||||
verbose_cimport: bool = false,
|
verbose_cimport: bool = false,
|
||||||
verbose_llvm_cpu_features: bool = false,
|
verbose_llvm_cpu_features: bool = false,
|
||||||
|
|
@ -1371,9 +1367,7 @@ pub fn create(gpa: *Allocator, options: InitOptions) !*Compilation {
|
||||||
.clang_passthrough_mode = options.clang_passthrough_mode,
|
.clang_passthrough_mode = options.clang_passthrough_mode,
|
||||||
.clang_preprocessor_mode = options.clang_preprocessor_mode,
|
.clang_preprocessor_mode = options.clang_preprocessor_mode,
|
||||||
.verbose_cc = options.verbose_cc,
|
.verbose_cc = options.verbose_cc,
|
||||||
.verbose_tokenize = options.verbose_tokenize,
|
.verbose_air = options.verbose_air,
|
||||||
.verbose_ast = options.verbose_ast,
|
|
||||||
.verbose_ir = options.verbose_ir,
|
|
||||||
.verbose_llvm_ir = options.verbose_llvm_ir,
|
.verbose_llvm_ir = options.verbose_llvm_ir,
|
||||||
.verbose_cimport = options.verbose_cimport,
|
.verbose_cimport = options.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = options.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = options.verbose_llvm_cpu_features,
|
||||||
|
|
@ -1988,7 +1982,7 @@ pub fn performAllTheWork(self: *Compilation) error{ TimerUnsupported, OutOfMemor
|
||||||
log.debug("analyze liveness of {s}", .{decl.name});
|
log.debug("analyze liveness of {s}", .{decl.name});
|
||||||
try liveness.analyze(module.gpa, &decl_arena.allocator, func.body);
|
try liveness.analyze(module.gpa, &decl_arena.allocator, func.body);
|
||||||
|
|
||||||
if (std.builtin.mode == .Debug and self.verbose_ir) {
|
if (std.builtin.mode == .Debug and self.verbose_air) {
|
||||||
func.dump(module.*);
|
func.dump(module.*);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -3710,9 +3704,7 @@ fn buildOutputFromZig(
|
||||||
.self_exe_path = comp.self_exe_path,
|
.self_exe_path = comp.self_exe_path,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
@ -3970,9 +3962,7 @@ fn updateStage1Module(comp: *Compilation, main_progress_node: *std.Progress.Node
|
||||||
.enable_time_report = comp.time_report,
|
.enable_time_report = comp.time_report,
|
||||||
.enable_stack_report = comp.stack_report,
|
.enable_stack_report = comp.stack_report,
|
||||||
.test_is_evented = comp.test_evented_io,
|
.test_is_evented = comp.test_evented_io,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_ir = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
@ -4128,9 +4118,7 @@ pub fn build_crt_file(
|
||||||
.c_source_files = c_source_files,
|
.c_source_files = c_source_files,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
|
|
@ -963,9 +963,7 @@ fn buildSharedLib(
|
||||||
.self_exe_path = comp.self_exe_path,
|
.self_exe_path = comp.self_exe_path,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
|
|
@ -186,9 +186,7 @@ pub fn buildLibCXX(comp: *Compilation) !void {
|
||||||
.c_source_files = c_source_files.items,
|
.c_source_files = c_source_files.items,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
@ -308,9 +306,7 @@ pub fn buildLibCXXABI(comp: *Compilation) !void {
|
||||||
.c_source_files = &c_source_files,
|
.c_source_files = &c_source_files,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
|
|
@ -222,9 +222,7 @@ pub fn buildTsan(comp: *Compilation) !void {
|
||||||
.c_source_files = c_source_files.items,
|
.c_source_files = c_source_files.items,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
|
|
@ -125,9 +125,7 @@ pub fn buildStaticLib(comp: *Compilation) !void {
|
||||||
.c_source_files = &c_source_files,
|
.c_source_files = &c_source_files,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
20
src/main.zig
20
src/main.zig
|
|
@ -408,9 +408,7 @@ const usage_build_generic =
|
||||||
\\ -fstack-report Print stack size diagnostics
|
\\ -fstack-report Print stack size diagnostics
|
||||||
\\ --verbose-link Display linker invocations
|
\\ --verbose-link Display linker invocations
|
||||||
\\ --verbose-cc Display C compiler invocations
|
\\ --verbose-cc Display C compiler invocations
|
||||||
\\ --verbose-tokenize Enable compiler debug output for tokenization
|
\\ --verbose-air Enable compiler debug output for Zig AIR
|
||||||
\\ --verbose-ast Enable compiler debug output for AST parsing
|
|
||||||
\\ --verbose-ir Enable compiler debug output for Zig IR
|
|
||||||
\\ --verbose-llvm-ir Enable compiler debug output for LLVM IR
|
\\ --verbose-llvm-ir Enable compiler debug output for LLVM IR
|
||||||
\\ --verbose-cimport Enable compiler debug output for C imports
|
\\ --verbose-cimport Enable compiler debug output for C imports
|
||||||
\\ --verbose-llvm-cpu-features Enable compiler debug output for LLVM CPU features
|
\\ --verbose-llvm-cpu-features Enable compiler debug output for LLVM CPU features
|
||||||
|
|
@ -542,9 +540,7 @@ fn buildOutputType(
|
||||||
var watch = false;
|
var watch = false;
|
||||||
var verbose_link = try optionalBoolEnvVar(arena, "ZIG_VERBOSE_LINK");
|
var verbose_link = try optionalBoolEnvVar(arena, "ZIG_VERBOSE_LINK");
|
||||||
var verbose_cc = try optionalBoolEnvVar(arena, "ZIG_VERBOSE_CC");
|
var verbose_cc = try optionalBoolEnvVar(arena, "ZIG_VERBOSE_CC");
|
||||||
var verbose_tokenize = false;
|
var verbose_air = false;
|
||||||
var verbose_ast = false;
|
|
||||||
var verbose_ir = false;
|
|
||||||
var verbose_llvm_ir = false;
|
var verbose_llvm_ir = false;
|
||||||
var verbose_cimport = false;
|
var verbose_cimport = false;
|
||||||
var verbose_llvm_cpu_features = false;
|
var verbose_llvm_cpu_features = false;
|
||||||
|
|
@ -1036,12 +1032,8 @@ fn buildOutputType(
|
||||||
verbose_link = true;
|
verbose_link = true;
|
||||||
} else if (mem.eql(u8, arg, "--verbose-cc")) {
|
} else if (mem.eql(u8, arg, "--verbose-cc")) {
|
||||||
verbose_cc = true;
|
verbose_cc = true;
|
||||||
} else if (mem.eql(u8, arg, "--verbose-tokenize")) {
|
} else if (mem.eql(u8, arg, "--verbose-air")) {
|
||||||
verbose_tokenize = true;
|
verbose_air = true;
|
||||||
} else if (mem.eql(u8, arg, "--verbose-ast")) {
|
|
||||||
verbose_ast = true;
|
|
||||||
} else if (mem.eql(u8, arg, "--verbose-ir")) {
|
|
||||||
verbose_ir = true;
|
|
||||||
} else if (mem.eql(u8, arg, "--verbose-llvm-ir")) {
|
} else if (mem.eql(u8, arg, "--verbose-llvm-ir")) {
|
||||||
verbose_llvm_ir = true;
|
verbose_llvm_ir = true;
|
||||||
} else if (mem.eql(u8, arg, "--verbose-cimport")) {
|
} else if (mem.eql(u8, arg, "--verbose-cimport")) {
|
||||||
|
|
@ -1960,9 +1952,7 @@ fn buildOutputType(
|
||||||
.libc_installation = if (libc_installation) |*lci| lci else null,
|
.libc_installation = if (libc_installation) |*lci| lci else null,
|
||||||
.verbose_cc = verbose_cc,
|
.verbose_cc = verbose_cc,
|
||||||
.verbose_link = verbose_link,
|
.verbose_link = verbose_link,
|
||||||
.verbose_tokenize = verbose_tokenize,
|
.verbose_air = verbose_air,
|
||||||
.verbose_ast = verbose_ast,
|
|
||||||
.verbose_ir = verbose_ir,
|
|
||||||
.verbose_llvm_ir = verbose_llvm_ir,
|
.verbose_llvm_ir = verbose_llvm_ir,
|
||||||
.verbose_cimport = verbose_cimport,
|
.verbose_cimport = verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
|
|
@ -217,9 +217,7 @@ pub fn buildCRTFile(comp: *Compilation, crt_file: CRTFile) !void {
|
||||||
.self_exe_path = comp.self_exe_path,
|
.self_exe_path = comp.self_exe_path,
|
||||||
.verbose_cc = comp.verbose_cc,
|
.verbose_cc = comp.verbose_cc,
|
||||||
.verbose_link = comp.bin_file.options.verbose_link,
|
.verbose_link = comp.bin_file.options.verbose_link,
|
||||||
.verbose_tokenize = comp.verbose_tokenize,
|
.verbose_air = comp.verbose_air,
|
||||||
.verbose_ast = comp.verbose_ast,
|
|
||||||
.verbose_ir = comp.verbose_ir,
|
|
||||||
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
.verbose_llvm_ir = comp.verbose_llvm_ir,
|
||||||
.verbose_cimport = comp.verbose_cimport,
|
.verbose_cimport = comp.verbose_cimport,
|
||||||
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
.verbose_llvm_cpu_features = comp.verbose_llvm_cpu_features,
|
||||||
|
|
|
||||||
|
|
@ -124,8 +124,6 @@ pub const Module = extern struct {
|
||||||
enable_time_report: bool,
|
enable_time_report: bool,
|
||||||
enable_stack_report: bool,
|
enable_stack_report: bool,
|
||||||
test_is_evented: bool,
|
test_is_evented: bool,
|
||||||
verbose_tokenize: bool,
|
|
||||||
verbose_ast: bool,
|
|
||||||
verbose_ir: bool,
|
verbose_ir: bool,
|
||||||
verbose_llvm_ir: bool,
|
verbose_llvm_ir: bool,
|
||||||
verbose_cimport: bool,
|
verbose_cimport: bool,
|
||||||
|
|
|
||||||
|
|
@ -2121,8 +2121,6 @@ struct CodeGen {
|
||||||
unsigned pointer_size_bytes;
|
unsigned pointer_size_bytes;
|
||||||
bool is_big_endian;
|
bool is_big_endian;
|
||||||
bool have_err_ret_tracing;
|
bool have_err_ret_tracing;
|
||||||
bool verbose_tokenize;
|
|
||||||
bool verbose_ast;
|
|
||||||
bool verbose_ir;
|
bool verbose_ir;
|
||||||
bool verbose_llvm_ir;
|
bool verbose_llvm_ir;
|
||||||
bool verbose_cimport;
|
bool verbose_cimport;
|
||||||
|
|
|
||||||
|
|
@ -106,8 +106,6 @@ void zig_stage1_build_object(struct ZigStage1 *stage1) {
|
||||||
g->enable_stack_report = stage1->enable_stack_report;
|
g->enable_stack_report = stage1->enable_stack_report;
|
||||||
g->test_is_evented = stage1->test_is_evented;
|
g->test_is_evented = stage1->test_is_evented;
|
||||||
|
|
||||||
g->verbose_tokenize = stage1->verbose_tokenize;
|
|
||||||
g->verbose_ast = stage1->verbose_ast;
|
|
||||||
g->verbose_ir = stage1->verbose_ir;
|
g->verbose_ir = stage1->verbose_ir;
|
||||||
g->verbose_llvm_ir = stage1->verbose_llvm_ir;
|
g->verbose_llvm_ir = stage1->verbose_llvm_ir;
|
||||||
g->verbose_cimport = stage1->verbose_cimport;
|
g->verbose_cimport = stage1->verbose_cimport;
|
||||||
|
|
|
||||||
|
|
@ -196,8 +196,6 @@ struct ZigStage1 {
|
||||||
bool enable_time_report;
|
bool enable_time_report;
|
||||||
bool enable_stack_report;
|
bool enable_stack_report;
|
||||||
bool test_is_evented;
|
bool test_is_evented;
|
||||||
bool verbose_tokenize;
|
|
||||||
bool verbose_ast;
|
|
||||||
bool verbose_ir;
|
bool verbose_ir;
|
||||||
bool verbose_llvm_ir;
|
bool verbose_llvm_ir;
|
||||||
bool verbose_cimport;
|
bool verbose_cimport;
|
||||||
|
|
|
||||||
|
|
@ -250,8 +250,6 @@ int main(int argc, char **argv) {
|
||||||
const char *emit_bin_path = nullptr;
|
const char *emit_bin_path = nullptr;
|
||||||
bool strip = false;
|
bool strip = false;
|
||||||
const char *out_name = nullptr;
|
const char *out_name = nullptr;
|
||||||
bool verbose_tokenize = false;
|
|
||||||
bool verbose_ast = false;
|
|
||||||
bool verbose_ir = false;
|
bool verbose_ir = false;
|
||||||
bool verbose_llvm_ir = false;
|
bool verbose_llvm_ir = false;
|
||||||
bool verbose_cimport = false;
|
bool verbose_cimport = false;
|
||||||
|
|
@ -288,10 +286,6 @@ int main(int argc, char **argv) {
|
||||||
return print_full_usage(arg0, stdout, EXIT_SUCCESS);
|
return print_full_usage(arg0, stdout, EXIT_SUCCESS);
|
||||||
} else if (strcmp(arg, "--strip") == 0) {
|
} else if (strcmp(arg, "--strip") == 0) {
|
||||||
strip = true;
|
strip = true;
|
||||||
} else if (strcmp(arg, "--verbose-tokenize") == 0) {
|
|
||||||
verbose_tokenize = true;
|
|
||||||
} else if (strcmp(arg, "--verbose-ast") == 0) {
|
|
||||||
verbose_ast = true;
|
|
||||||
} else if (strcmp(arg, "--verbose-ir") == 0) {
|
} else if (strcmp(arg, "--verbose-ir") == 0) {
|
||||||
verbose_ir = true;
|
verbose_ir = true;
|
||||||
} else if (strcmp(arg, "--verbose-llvm-ir") == 0) {
|
} else if (strcmp(arg, "--verbose-llvm-ir") == 0) {
|
||||||
|
|
@ -458,8 +452,6 @@ int main(int argc, char **argv) {
|
||||||
stage1->root_name_ptr = out_name;
|
stage1->root_name_ptr = out_name;
|
||||||
stage1->root_name_len = strlen(out_name);
|
stage1->root_name_len = strlen(out_name);
|
||||||
stage1->strip = strip;
|
stage1->strip = strip;
|
||||||
stage1->verbose_tokenize = verbose_tokenize;
|
|
||||||
stage1->verbose_ast = verbose_ast;
|
|
||||||
stage1->verbose_ir = verbose_ir;
|
stage1->verbose_ir = verbose_ir;
|
||||||
stage1->verbose_llvm_ir = verbose_llvm_ir;
|
stage1->verbose_llvm_ir = verbose_llvm_ir;
|
||||||
stage1->verbose_cimport = verbose_cimport;
|
stage1->verbose_cimport = verbose_cimport;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue