mirror of
https://github.com/golang/go
synced 2024-11-20 10:14:43 -07:00
rm outfile if 6g exits with an error
R=ken OCL=33134 CL=33141
This commit is contained in:
parent
7c9b9af76e
commit
d594639087
@ -60,9 +60,12 @@ fatal(char *fmt, ...)
|
|||||||
vfprint(1, fmt, arg);
|
vfprint(1, fmt, arg);
|
||||||
va_end(arg);
|
va_end(arg);
|
||||||
print("\n");
|
print("\n");
|
||||||
if(debug['h'])
|
if(debug['h']) {
|
||||||
|
if(outfile)
|
||||||
|
unlink(outfile);
|
||||||
*(int*)0 = 0;
|
*(int*)0 = 0;
|
||||||
exit(1);
|
}
|
||||||
|
errorexit();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -87,7 +90,7 @@ linehist(char *file, int32 off, int relative)
|
|||||||
file = cp;
|
file = cp;
|
||||||
}
|
}
|
||||||
|
|
||||||
h = alloc(sizeof(Hist));
|
h = mal(sizeof(Hist));
|
||||||
h->name = file;
|
h->name = file;
|
||||||
h->line = lineno;
|
h->line = lineno;
|
||||||
h->offset = off;
|
h->offset = off;
|
||||||
|
Loading…
Reference in New Issue
Block a user