diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 03:16:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 03:16:17 +0000 |
commit | 028f6515424e832ee10a1e4cb1f96ea241e2acae (patch) | |
tree | c8ce68621a3ed2425b8dde4e2f523cbae0bf11fe /sim/common/sim-trace.c | |
parent | 7f35e991971df570411a2688b948cd72adb4cf90 (diff) | |
download | gdb-028f6515424e832ee10a1e4cb1f96ea241e2acae.zip gdb-028f6515424e832ee10a1e4cb1f96ea241e2acae.tar.gz gdb-028f6515424e832ee10a1e4cb1f96ea241e2acae.tar.bz2 |
sim: common: trim trailing whitespace
Diffstat (limited to 'sim/common/sim-trace.c')
-rw-r--r-- | sim/common/sim-trace.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sim/common/sim-trace.c b/sim/common/sim-trace.c index 66c2fc7..0373532 100644 --- a/sim/common/sim-trace.c +++ b/sim/common/sim-trace.c @@ -214,7 +214,7 @@ set_trace_option_mask (SIM_DESC sd, const char *name, int mask, const char *arg) } } } - } + } return SIM_RC_OK; } @@ -605,7 +605,7 @@ print_data (SIM_DESC sd, abort (); } } - + static const char * trace_idx_to_str (int trace_idx) { @@ -1021,7 +1021,7 @@ trace_result_word1 (SIM_DESC sd, save_data (sd, data, trace_fmt_word, sizeof (unsigned_word), &r0); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result0 (SIM_DESC sd, @@ -1035,7 +1035,7 @@ trace_result0 (SIM_DESC sd, last_input = TRACE_INPUT_IDX (data); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_word2 (SIM_DESC sd, @@ -1053,7 +1053,7 @@ trace_result_word2 (SIM_DESC sd, save_data (sd, data, trace_fmt_word, sizeof (r1), &r1); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_word4 (SIM_DESC sd, @@ -1075,7 +1075,7 @@ trace_result_word4 (SIM_DESC sd, save_data (sd, data, trace_fmt_word, sizeof (r3), &r3); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_bool1 (SIM_DESC sd, @@ -1091,7 +1091,7 @@ trace_result_bool1 (SIM_DESC sd, save_data (sd, data, trace_fmt_bool, sizeof (r0), &r0); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_addr1 (SIM_DESC sd, @@ -1107,7 +1107,7 @@ trace_result_addr1 (SIM_DESC sd, save_data (sd, data, trace_fmt_addr, sizeof (r0), &r0); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_fp1 (SIM_DESC sd, @@ -1123,7 +1123,7 @@ trace_result_fp1 (SIM_DESC sd, save_data (sd, data, trace_fmt_fp, sizeof (fp_word), &f0); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_fp2 (SIM_DESC sd, @@ -1141,7 +1141,7 @@ trace_result_fp2 (SIM_DESC sd, save_data (sd, data, trace_fmt_fp, sizeof (f1), &f1); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_fpu1 (SIM_DESC sd, @@ -1159,7 +1159,7 @@ trace_result_fpu1 (SIM_DESC sd, save_data (sd, data, trace_fmt_fp, sizeof (double), &d); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_string1 (SIM_DESC sd, @@ -1175,7 +1175,7 @@ trace_result_string1 (SIM_DESC sd, save_data (sd, data, trace_fmt_string, strlen (s0) + 1, s0); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_result_word1_string1 (SIM_DESC sd, @@ -1193,7 +1193,7 @@ trace_result_word1_string1 (SIM_DESC sd, save_data (sd, data, trace_fmt_string, strlen (s0) + 1, s0); trace_results (sd, cpu, trace_idx, last_input); -} +} void trace_vprintf (SIM_DESC sd, sim_cpu *cpu, const char *fmt, va_list ap) |