aboutsummaryrefslogtreecommitdiff
path: root/tccpp.c
diff options
context:
space:
mode:
authorgus knight <waddlesplash@gmail.com>2015-07-27 14:14:41 -0400
committergus knight <waddlesplash@gmail.com>2015-07-27 14:14:41 -0400
commitd6b64e2574bb4bc3c19e472b83073ff4d8786df2 (patch)
treecfe63534d235f8c357e2ef16eb90869116decdb8 /tccpp.c
parent41031221c82384f40b5664b5e12b1a81eefcdfe6 (diff)
downloadtinycc-d6b64e2574bb4bc3c19e472b83073ff4d8786df2.tar.gz
tinycc-d6b64e2574bb4bc3c19e472b83073ff4d8786df2.tar.bz2
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.
Diffstat (limited to 'tccpp.c')
-rw-r--r--tccpp.c8
1 files changed, 4 insertions, 4 deletions
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 {