diff options
author | Pedro Alves <palves@redhat.com> | 2016-01-12 15:03:11 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-01-12 15:03:11 +0000 |
commit | bc504a311794145e7aef2011f31ea87aa64bea4c (patch) | |
tree | c090ec3bb13003608595cc59a8bd9ec1cd6b3cbf /gdb/common | |
parent | cde67b27d6304ffcc43fc13fb6da56f583af018d (diff) | |
download | gdb-bc504a311794145e7aef2011f31ea87aa64bea4c.zip gdb-bc504a311794145e7aef2011f31ea87aa64bea4c.tar.gz gdb-bc504a311794145e7aef2011f31ea87aa64bea4c.tar.bz2 |
Remove trademark acknowledgements throughout
The GNU Coding Standards say:
"Please do not include any trademark acknowledgements in GNU
software packages or documentation."
gdb/ChangeLog:
2016-01-12 Pedro Alves <palves@redhat.com>
Remove use of the registered trademark symbol throughout.
gdb/gdbserver/ChangeLog:
2016-01-12 Pedro Alves <palves@redhat.com>
Remove use of the registered trademark symbol throughout.
gdb/doc/ChangeLog:
2016-01-12 Pedro Alves <palves@redhat.com>
Remove use of the registered trademark symbol throughout.
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/btrace-common.c | 2 | ||||
-rw-r--r-- | gdb/common/btrace-common.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gdb/common/btrace-common.c b/gdb/common/btrace-common.c index 185a3e5..eba3979 100644 --- a/gdb/common/btrace-common.c +++ b/gdb/common/btrace-common.c @@ -35,7 +35,7 @@ btrace_format_string (enum btrace_format format) return _("Branch Trace Store"); case BTRACE_FORMAT_PT: - return _("Intel(R) Processor Trace"); + return _("Intel Processor Trace"); } internal_error (__FILE__, __LINE__, _("Unknown branch trace format")); diff --git a/gdb/common/btrace-common.h b/gdb/common/btrace-common.h index 4165fd3..ad208cd 100644 --- a/gdb/common/btrace-common.h +++ b/gdb/common/btrace-common.h @@ -60,7 +60,7 @@ enum btrace_format Actually, the format is a sequence of blocks derived from BTS. */ BTRACE_FORMAT_BTS, - /* Branch trace is in Intel(R) Processor Trace format. */ + /* Branch trace is in Intel Processor Trace format. */ BTRACE_FORMAT_PT }; @@ -103,7 +103,7 @@ struct btrace_config_bts unsigned int size; }; -/* An Intel(R) Processor Trace configuration. */ +/* An Intel Processor Trace configuration. */ struct btrace_config_pt { @@ -129,7 +129,7 @@ struct btrace_config /* The BTS format configuration. */ struct btrace_config_bts bts; - /* The Intel(R) Processor Trace format configuration. */ + /* The Intel Processor Trace format configuration. */ struct btrace_config_pt pt; }; @@ -148,7 +148,7 @@ struct btrace_data_pt_config struct btrace_cpu cpu; }; -/* Branch trace in Intel(R) Processor Trace format. */ +/* Branch trace in Intel Processor Trace format. */ struct btrace_data_pt { /* Some configuration information to go with the data. */ |