From d6b64e2574bb4bc3c19e472b83073ff4d8786df2 Mon Sep 17 00:00:00 2001 From: gus knight Date: Mon, 27 Jul 2015 14:14:41 -0400 Subject: Clean up lots of rogue tabs. Still some more tabs to be taken care of. arm-gen.c and tcccoff.c have so many style issues that I'm just going to throw clang-format at them. --- tccpp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tccpp.c') diff --git a/tccpp.c b/tccpp.c index 9fa5f84..eed09b5 100644 --- a/tccpp.c +++ b/tccpp.c @@ -786,7 +786,7 @@ redo_start: else if (tok == TOK_LINEFEED) goto redo_start; } else if (parse_flags & PARSE_FLAG_ASM_FILE) - p = parse_line_comment(p); + p = parse_line_comment(p); break; _default: default: @@ -1786,7 +1786,7 @@ _line_num: total_lines += file->line_num - n; file->line_num = n; if (s1->do_debug) - put_stabs(file->filename, N_BINCL, 0, 0, 0); + put_stabs(file->filename, N_BINCL, 0, 0, 0); break; case TOK_ERROR: case TOK_WARNING: @@ -2272,7 +2272,7 @@ static void parse_number(const char *p) if (n & 0xffffffff00000000LL || must_64bit) { tok = TOK_CLLONG; n1 = n >> 32; - } else { + } else { tok = TOK_CINT; n1 = n; } @@ -2538,7 +2538,7 @@ maybe_newline: } else if (c == '.') { PEEKC(c, p); if (c != '.') - expect("'.'"); + expect("'.'"); PEEKC(c, p); tok = TOK_DOTS; } else { -- cgit v1.3.1