summaryrefslogtreecommitdiff
path: root/gcc/mips-tdump.c
diff options
context:
space:
mode:
authorro <ro@138bc75d-0d04-0410-961f-82ee72b054a4>2009-05-14 10:10:23 +0000
committerro <ro@138bc75d-0d04-0410-961f-82ee72b054a4>2009-05-14 10:10:23 +0000
commit92e0f7867ab7a1c9f75711be77112c1e0959294c (patch)
treeb7c44cfb644847169ff31f4d6ee24a3e979eb3a7 /gcc/mips-tdump.c
parent0477d42df7ac9ecce64ab2ff989497402191618e (diff)
downloadgcc-92e0f7867ab7a1c9f75711be77112c1e0959294c.tar.gz
* config/alpha/alpha.c (alpha_initialize_trampoline): Change 0 to
LCT_NORMAL in function call. * mips-tdump.c (print_file_desc): Add cast to enum type. * mips-tfile.c (add_ext_symbol): Add casts to enum types. (mark_stabs): Add casts to enum types. (parse_stabs_common): Add casts to enum types. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147529 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mips-tdump.c')
-rw-r--r--gcc/mips-tdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c
index df902a6deb4..240e9e8b887 100644
--- a/gcc/mips-tdump.c
+++ b/gcc/mips-tdump.c
@@ -1116,7 +1116,7 @@ print_file_desc (FDR *fdp, int number)
(fdp->fBigendian) ? "BIG" : "LITTLE");
printf (" Debug level = %-10s Language = %s\n",
- glevel_to_string (fdp->glevel),
+ glevel_to_string ((glevel_t) fdp->glevel),
lang_to_string((lang_t) fdp->lang));
printf (" Adr = 0x%08lx\n\n", (long) fdp->adr);