diff options
Diffstat (limited to 'gcc/config/avr/avr-log.c')
-rw-r--r-- | gcc/config/avr/avr-log.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/config/avr/avr-log.c b/gcc/config/avr/avr-log.c index 87cbd2357ac..7381d1edd39 100644 --- a/gcc/config/avr/avr-log.c +++ b/gcc/config/avr/avr-log.c @@ -42,6 +42,7 @@ == known %-codes == + b: bool r: rtx t: tree T: tree (brief) @@ -132,7 +133,7 @@ avr_log_set_caller_f (const char *caller) return avr_log_fdump_f; } -/* Worker function implementing the %-codes and forwarning to +/* Worker function implementing the %-codes and forwarding to respective print/dump function. */ static void @@ -190,6 +191,10 @@ avr_log_vadump (FILE *file, const char *fmt, va_list ap) fprintf (file, "%x", va_arg (ap, int)); break; + case 'b': + fprintf (file, "%s", va_arg (ap, int) ? "true" : "false"); + break; + case 'c': fputc (va_arg (ap, int), file); break; |