diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-15 13:38:03 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-15 13:38:03 +0000 |
commit | 337d789b57c5fbe86822b3dd9d6b7fad8c7cb33b (patch) | |
tree | 15c488cfd0892394f03a3a880f8a6027ac7d4155 /gcc/read-rtl.c | |
parent | 039c27d6032202129054360627a0db5b64c04bd5 (diff) | |
download | gcc-337d789b57c5fbe86822b3dd9d6b7fad8c7cb33b.tar.gz |
* read-rtl.c: Fix formatting.
* real.c: Likewise.
* recog.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* rtlanal.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48870 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r-- | gcc/read-rtl.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index 3c9b9f536d2..5b937ec9f3b 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -73,7 +73,7 @@ fatal_with_file_and_line VPARAMS ((FILE *infile, const char *msg, ...)) putc ('\n', stderr); /* Gather some following context. */ - for (i = 0; i < sizeof(context)-1; ++i) + for (i = 0; i < sizeof (context)-1; ++i) { c = getc (infile); if (c == EOF) @@ -376,13 +376,13 @@ read_string (ob, infile, star_if_braced) not provide one. */ #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ) HOST_WIDE_INT -atoll(p) +atoll (p) const char *p; { int neg = 0; HOST_WIDE_INT tmp_wide; - while (ISSPACE(*p)) + while (ISSPACE (*p)) p++; if (*p == '-') neg = 1, p++; @@ -390,7 +390,7 @@ atoll(p) p++; tmp_wide = 0; - while (ISDIGIT(*p)) + while (ISDIGIT (*p)) { HOST_WIDE_INT new_wide = tmp_wide*10 + (*p - '0'); if (new_wide < tmp_wide) @@ -415,7 +415,7 @@ def_hash (def) const void *def; { unsigned result, i; - const char *string = ((const struct md_constant *)def)->name; + const char *string = ((const struct md_constant *) def)->name; for (result = i = 0;*string++ != '\0'; i++) result += ((unsigned char) *string << (i % CHAR_BIT)); @@ -427,8 +427,8 @@ static int def_name_eq_p (def1, def2) const void *def1, *def2; { - return ! strcmp (((const struct md_constant *)def1)->name, - ((const struct md_constant *)def2)->name); + return ! strcmp (((const struct md_constant *) def1)->name, + ((const struct md_constant *) def2)->name); } /* INFILE is a FILE pointer to read text from. TMP_CHAR is a buffer suitable @@ -510,7 +510,7 @@ validate_const_int (infile, string) int valid = 1; cp = string; - while (*cp && ISSPACE(*cp)) + while (*cp && ISSPACE (*cp)) cp++; if (*cp == '-' || *cp == '+') cp++; @@ -728,7 +728,7 @@ again: case 'w': read_name (tmp_char, infile); - validate_const_int(infile, tmp_char); + validate_const_int (infile, tmp_char); #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT tmp_wide = atoi (tmp_char); #else @@ -750,7 +750,7 @@ again: case 'i': case 'n': read_name (tmp_char, infile); - validate_const_int(infile, tmp_char); + validate_const_int (infile, tmp_char); tmp_int = atoi (tmp_char); XINT (return_rtx, i) = tmp_int; break; |