diff options
author | Jim Wilson <wilson@redhat.com> | 2001-01-24 04:30:47 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2001-01-23 20:30:47 -0800 |
commit | 0024a8041f8b3a6b02e81632a9fb4b3c61969ac1 (patch) | |
tree | fc4d21fc541822da267b743559aad79cad4610ec /gcc/dwarf2out.c | |
parent | 17fd8a87a4d92cd98089525cbc562ed3beed7937 (diff) | |
download | gcc-0024a8041f8b3a6b02e81632a9fb4b3c61969ac1.tar.gz |
Eliminate IA-64 compiler warnings.
* dwarf2out.c (dwarf2out_line): Make last_file_num be unsigned.
* frame.h (__ia64_personality_v1): Add prototype.
* libgcc2.c (ia64_throw_helper): Change personality declaration to
prototype form. Add void * cast to first argument to personality
call.
...
From-SVN: r39227
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index a3c0e1fae7f..9b0a8c454be 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -11390,7 +11390,7 @@ dwarf2out_line (filename, line) fprintf (asm_out_file, "\t.file %d \"%s\"\n", file_num, filename); fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line); #else - static int last_file_num; + static unsigned int last_file_num; if (file_num != last_file_num) { last_file_num = file_num; |