summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2010-12-31 13:42:20 +0000
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2010-12-31 13:42:20 +0000
commit98670eba28deb44a702c7e3cc17c21b1c24017cb (patch)
treee1a2e38f8db5998b1534bad55a42b768e66d239d
parent2b53b78468e28758402e81afcfedce480cc6904c (diff)
downloadgcc-98670eba28deb44a702c7e3cc17c21b1c24017cb.tar.gz
PR target/47135
* config/pdp11/pdp11.c (pdp11_asm_print_operand_punct_valid_p): Change type to match target.def . git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168376 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/pdp11/pdp11.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 39fd47a378e..c02d742d719 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -33,6 +33,10 @@
(MIPS_CPU_STRING_DEFAULT): Undef before defining.
(MULTILIB_DEFAULTS, MIPS_ABI_DEFAULT, SUBTARGET_CC1_SPEC): Likewise.
+ PR target/47135
+ * config/pdp11/pdp11.c (pdp11_asm_print_operand_punct_valid_p): Change
+ type to match target.def .
+
2010-12-30 Mingjie Xing <mingjie.xing@gmail.com>
* config/mips/mips.h (SHIFT_COUNT_TRUNCATED): Change
diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c
index 21f97d2127d..b6ed97989fc 100644
--- a/gcc/config/pdp11/pdp11.c
+++ b/gcc/config/pdp11/pdp11.c
@@ -770,7 +770,7 @@ pdp11_asm_print_operand (FILE *file, rtx x, int code)
}
static bool
-pdp11_asm_print_operand_punct_valid_p (char c)
+pdp11_asm_print_operand_punct_valid_p (unsigned char c)
{
return (c == '#' || c == '@');
}