Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9844 → Rev 9845

/programs/develop/ktcc/trunk/source/tcc.c
331,7 → 331,7
if (tcc_add_file(s, filename, filetype) < 0)
ret = 1;
else
if (s->output_type == TCC_OUTPUT_OBJ) {
if (s->output_type == TCC_OUTPUT_OBJ && !s->option_r) {
ret = !!tcc_output_file(s, s->outfile);
if (s->gen_deps && !ret)
gen_makedeps(s, s->outfile, s->deps_outfile);
360,7 → 360,8
#endif
} else
if (s->output_type == TCC_OUTPUT_EXE ||
s->output_type == TCC_OUTPUT_DLL)
s->output_type == TCC_OUTPUT_DLL ||
(s->output_type == TCC_OUTPUT_OBJ && s->option_r))
{
ret = !!tcc_output_file(s, s->outfile);
if (s->gen_deps && !ret)