Merge remote-tracking branch 'origin/c-to-zig' into c-to-zig
commit
32c51e0156
|
@ -5021,7 +5021,7 @@ void codegen_parsec(CodeGen *g, Buf *full_path) {
|
||||||
ZigList<ErrorMsg *> errors = {0};
|
ZigList<ErrorMsg *> errors = {0};
|
||||||
int err = parse_h_file(import, &errors, buf_ptr(full_path), g, nullptr);
|
int err = parse_h_file(import, &errors, buf_ptr(full_path), g, nullptr);
|
||||||
if (err) {
|
if (err) {
|
||||||
fprintf(stderr, "unable to parse .h file: %s\n", err_str(err));
|
fprintf(stderr, "unable to parse C file: %s\n", err_str(err));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13421,7 +13421,7 @@ static TypeTableEntry *ir_analyze_instruction_c_import(IrAnalyze *ira, IrInstruc
|
||||||
|
|
||||||
int err;
|
int err;
|
||||||
if ((err = parse_h_buf(child_import, &errors, &cimport_scope->buf, ira->codegen, node))) {
|
if ((err = parse_h_buf(child_import, &errors, &cimport_scope->buf, ira->codegen, node))) {
|
||||||
zig_panic("unable to parse h file: %s\n", err_str(err));
|
zig_panic("unable to parse C file: %s\n", err_str(err));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (errors.length > 0) {
|
if (errors.length > 0) {
|
||||||
|
|
Loading…
Reference in New Issue