diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2002-10-21 20:24:57 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2002-10-21 20:24:57 +0000 |
commit | 97d05bfdd2480b13c36ea215b45030168c613b04 (patch) | |
tree | 0ed8c8a532e5ab6d57554e6870c2e75b3661617f /gcc/profile.c | |
parent | aaee784acf0a3a5817e35b70ba930c625ce8057e (diff) | |
download | gcc-97d05bfdd2480b13c36ea215b45030168c613b04.zip gcc-97d05bfdd2480b13c36ea215b45030168c613b04.tar.gz gcc-97d05bfdd2480b13c36ea215b45030168c613b04.tar.bz2 |
c-opts.c (missing_arg): Use cl_options[opt_index].opt_code instead of just opt_index as switch expression.
* c-opts.c (missing_arg): Use cl_options[opt_index].opt_code
instead of just opt_index as switch expression.
* calls.c (store_one_arg): Change type of 'excess_align'
to unsigned int.
* profile.c (output_gcov_string): Change type of 'temp'
to size_t.
From-SVN: r58381
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 6032794..fd1f424 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -221,7 +221,7 @@ output_gcov_string (string, delimiter) const char *string; long delimiter; { - long temp; + size_t temp; /* Write a delimiter to indicate that a file name follows. */ __write_long (delimiter, bb_file, 4); |