aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/mmix/mmix-protos.h
diff options
context:
space:
mode:
authorJoern Rennecke <amylaar@spamcop.net>2010-11-10 17:18:22 +0000
committerJoern Rennecke <amylaar@gcc.gnu.org>2010-11-10 17:18:22 +0000
commit4ae50669e063bf313ea572a88bfac2e6562e7cc8 (patch)
tree15d3ea01b4e9c40406394bd7bd83eb91c33f1366 /gcc/config/mmix/mmix-protos.h
parente639b20676a9eab048bfdcf007b7ab3b6398a845 (diff)
downloadgcc-4ae50669e063bf313ea572a88bfac2e6562e7cc8.zip
gcc-4ae50669e063bf313ea572a88bfac2e6562e7cc8.tar.gz
gcc-4ae50669e063bf313ea572a88bfac2e6562e7cc8.tar.bz2
re PR target/46415 (mmix-knuth-mmixware --enable-werror-always build fails)
PR target/46415 * config/mmix/mmix-protos.h (mmix_local_alignment): Update prototype. (mmix_dbx_register_number): Likewise. * config/mmix/mmix.c: Include df.h . (mmix_local_alignment): Change argument basic_align and return type to unsigned. (mmix_dbx_register_number): Change argument and return type to unsigned. (mmix_expand_prologue): Use add_reg_note. From-SVN: r166545
Diffstat (limited to 'gcc/config/mmix/mmix-protos.h')
-rw-r--r--gcc/config/mmix/mmix-protos.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mmix/mmix-protos.h b/gcc/config/mmix/mmix-protos.h
index 1f9cae0..847c16a 100644
--- a/gcc/config/mmix/mmix-protos.h
+++ b/gcc/config/mmix/mmix-protos.h
@@ -48,12 +48,12 @@ extern void mmix_output_register_setting (FILE *, int, HOST_WIDEST_INT, int);
extern void mmix_conditional_register_usage (void);
extern int mmix_opposite_regno (int, int);
extern int mmix_local_regno (int);
-extern int mmix_dbx_register_number (int);
+extern unsigned mmix_dbx_register_number (unsigned);
extern int mmix_use_simple_return (void);
extern void mmix_make_decl_one_only (tree);
extern int mmix_data_alignment (tree, int);
extern int mmix_constant_alignment (tree, int);
-extern int mmix_local_alignment (tree, int);
+extern unsigned mmix_local_alignment (tree, unsigned);
extern void mmix_asm_output_pool_prologue (FILE *, const char *, tree, int);
extern void mmix_asm_output_aligned_common (FILE *, const char *, int, int);
extern void mmix_asm_output_aligned_local (FILE *, const char *, int, int);