diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-21 20:24:57 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-21 20:24:57 +0000 |
commit | 2839725565b8a5f5e104b261ad1cfdfa70cad2e6 (patch) | |
tree | 0ed8c8a532e5ab6d57554e6870c2e75b3661617f /gcc/profile.c | |
parent | 878b2d705a2184a6d17fd7a704444dff1d9fe5e9 (diff) | |
download | gcc-2839725565b8a5f5e104b261ad1cfdfa70cad2e6.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58381 138bc75d-0d04-0410-961f-82ee72b054a4
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 60327947c2e..fd1f4241ef8 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); |