[gcc r15-3508] AVR: Remove "Atmel" from header comment.
Georg-Johann Lay
gjl@gcc.gnu.org
Fri Sep 6 08:25:08 GMT 2024
https://gcc.gnu.org/g:f9c5c12d24cc3a9da5c1d38e69a8aa5f58224c4a
commit r15-3508-gf9c5c12d24cc3a9da5c1d38e69a8aa5f58224c4a
Author: Georg-Johann Lay <avr@gjlay.de>
Date: Sun Sep 1 17:19:38 2024 +0200
AVR: Remove "Atmel" from header comment.
gcc/
* config/avr/avr.h: Remove "Atmel" from header comment.
* config/avr/avr.cc: Same.
* config/avr/avr.md: Same.
* config/avr/avr.opt: Same.
* config/avr/avr-dimode.md: Same.
* config/avr/avr-fixed.md: Same.
* config/avr/constraints.md: Same.
* config/avr/predicates.md: Same.
* config/avr/avr-log.cc: Same.
* config/avr/avrlibc.h: Same.
* config/avr/specs.h: Same.
* common/config/avr/avr-common.cc: Same.
* doc/install.texi: Same.
* config/avr/avr-arch.h: Adjust header comment.
* config/avr/avr-c.cc: Same.
* config/avr/avr-mcus.def: Same.
* config/avr/avr-modes.def: Same.
* config/avr/avr-passes.cc: Same.
* config/avr/avr-passes.def: Same.
* config/avr/avr-protos.h: Same.
* config/avr/driver-avr.cc: Same.
* config/avr/elf.h: Same.
* config/avr/gen-avr-mmcu-specs.cc: Same.
* config/avr/gen-avr-mmcu-texi.cc: Same.
Diff:
---
gcc/common/config/avr/avr-common.cc | 2 +-
gcc/config/avr/avr-arch.h | 3 +--
gcc/config/avr/avr-c.cc | 3 ++-
gcc/config/avr/avr-dimode.md | 3 +--
gcc/config/avr/avr-fixed.md | 3 +--
gcc/config/avr/avr-log.cc | 2 +-
gcc/config/avr/avr-mcus.def | 2 +-
gcc/config/avr/avr-modes.def | 3 ++-
gcc/config/avr/avr-passes.cc | 2 +-
gcc/config/avr/avr-passes.def | 2 +-
gcc/config/avr/avr-protos.h | 3 +--
gcc/config/avr/avr.cc | 2 +-
gcc/config/avr/avr.h | 2 +-
gcc/config/avr/avr.md | 2 +-
gcc/config/avr/avr.opt | 2 +-
gcc/config/avr/avrlibc.h | 3 +--
gcc/config/avr/constraints.md | 2 +-
gcc/config/avr/driver-avr.cc | 2 +-
gcc/config/avr/elf.h | 3 ++-
gcc/config/avr/gen-avr-mmcu-specs.cc | 3 ++-
gcc/config/avr/gen-avr-mmcu-texi.cc | 3 ++-
gcc/config/avr/predicates.md | 2 +-
gcc/config/avr/specs.h | 2 +-
gcc/doc/install.texi | 2 +-
24 files changed, 29 insertions(+), 29 deletions(-)
diff --git a/gcc/common/config/avr/avr-common.cc b/gcc/common/config/avr/avr-common.cc
index fdf130f1e1a..bb454a20856 100644
--- a/gcc/common/config/avr/avr-common.cc
+++ b/gcc/common/config/avr/avr-common.cc
@@ -1,4 +1,4 @@
-/* Common hooks for ATMEL AVR.
+/* Common hooks for AVR 8-bit microcontrollers.
Copyright (C) 1998-2024 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/gcc/config/avr/avr-arch.h b/gcc/config/avr/avr-arch.h
index 69e8db1fcfe..e7c02ebfbb0 100644
--- a/gcc/config/avr/avr-arch.h
+++ b/gcc/config/avr/avr-arch.h
@@ -1,5 +1,4 @@
-/* Definitions of types that are used to store AVR architecture and
- device information.
+/* Device information for AVR 8-bit microcontrollers.
Copyright (C) 2012-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay (avr@gjlay.de)
diff --git a/gcc/config/avr/avr-c.cc b/gcc/config/avr/avr-c.cc
index ca484f26132..34c73c6bf55 100644
--- a/gcc/config/avr/avr-c.cc
+++ b/gcc/config/avr/avr-c.cc
@@ -1,4 +1,5 @@
-/* Copyright (C) 2009-2024 Free Software Foundation, Inc.
+/* Code for the C/C++ front end for AVR 8-bit microcontrollers.
+ Copyright (C) 2009-2024 Free Software Foundation, Inc.
Contributed by Anatoly Sokolov (aesok@post.ru)
This file is part of GCC.
diff --git a/gcc/config/avr/avr-dimode.md b/gcc/config/avr/avr-dimode.md
index c357213e211..e6284ced45d 100644
--- a/gcc/config/avr/avr-dimode.md
+++ b/gcc/config/avr/avr-dimode.md
@@ -1,5 +1,4 @@
-;; Machine description for GNU compiler,
-;; for Atmel AVR micro controllers.
+;; Support 64-bit operations for AVR 8-bit microcontrollers.
;; Copyright (C) 1998-2024 Free Software Foundation, Inc.
;; Contributed by Georg Lay (avr@gjlay.de)
;;
diff --git a/gcc/config/avr/avr-fixed.md b/gcc/config/avr/avr-fixed.md
index 911b8b2cd67..eb83751a768 100644
--- a/gcc/config/avr/avr-fixed.md
+++ b/gcc/config/avr/avr-fixed.md
@@ -1,5 +1,4 @@
-;; This file contains instructions that support fixed-point operations
-;; for Atmel AVR micro controllers.
+;; Support fixed-point operations for AVR 8-bit microcontrollers.
;; Copyright (C) 2012-2024 Free Software Foundation, Inc.
;;
;; Contributed by Sean D'Epagnier (sean@depagnier.com)
diff --git a/gcc/config/avr/avr-log.cc b/gcc/config/avr/avr-log.cc
index d702c5f3fd8..5aacab19e38 100644
--- a/gcc/config/avr/avr-log.cc
+++ b/gcc/config/avr/avr-log.cc
@@ -1,4 +1,4 @@
-/* Subroutines for log output for Atmel AVR back end.
+/* Subroutines for log output for AVR 8-bit microcontrollers.
Copyright (C) 2011-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay (avr@gjlay.de)
diff --git a/gcc/config/avr/avr-mcus.def b/gcc/config/avr/avr-mcus.def
index 068875a2c60..f7401ab3b09 100644
--- a/gcc/config/avr/avr-mcus.def
+++ b/gcc/config/avr/avr-mcus.def
@@ -1,4 +1,4 @@
-/* AVR MCUs.
+/* Information on supported AVR 8-bit microcontrollers.
Copyright (C) 2009-2024 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/gcc/config/avr/avr-modes.def b/gcc/config/avr/avr-modes.def
index b756beae9a0..e69636a6099 100644
--- a/gcc/config/avr/avr-modes.def
+++ b/gcc/config/avr/avr-modes.def
@@ -1,4 +1,5 @@
-/* Copyright (C) 2012-2024 Free Software Foundation, Inc.
+/* Extra machine modes for AVR 8-bit microcontrollers.
+ Copyright (C) 2012-2024 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/gcc/config/avr/avr-passes.cc b/gcc/config/avr/avr-passes.cc
index 8a71b57ada1..95b8e9a7529 100644
--- a/gcc/config/avr/avr-passes.cc
+++ b/gcc/config/avr/avr-passes.cc
@@ -1,4 +1,4 @@
-/* Functions and methods for avr specific passes registered in avr-passes.def.
+/* Support for avr-passes.def for AVR 8-bit microcontrollers.
Copyright (C) 2024 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/gcc/config/avr/avr-passes.def b/gcc/config/avr/avr-passes.def
index cd89d673727..d39bdd89a11 100644
--- a/gcc/config/avr/avr-passes.def
+++ b/gcc/config/avr/avr-passes.def
@@ -1,4 +1,4 @@
-/* Description of target passes for AVR.
+/* Description of target passes for AVR 8-bit microcontrollers.
Copyright (C) 2016-2024 Free Software Foundation, Inc. */
/* This file is part of GCC.
diff --git a/gcc/config/avr/avr-protos.h b/gcc/config/avr/avr-protos.h
index d6f4abbac66..71c110c791f 100644
--- a/gcc/config/avr/avr-protos.h
+++ b/gcc/config/avr/avr-protos.h
@@ -1,5 +1,4 @@
-/* Prototypes for exported functions defined in avr.cc
-
+/* Prototypes for tm_p.h for AVR 8-bit microcontrollers.
Copyright (C) 2000-2024 Free Software Foundation, Inc.
Contributed by Denis Chertykov (chertykov@gmail.com)
diff --git a/gcc/config/avr/avr.cc b/gcc/config/avr/avr.cc
index 079db62695d..1f809d8e1e3 100644
--- a/gcc/config/avr/avr.cc
+++ b/gcc/config/avr/avr.cc
@@ -1,4 +1,4 @@
-/* Subroutines for insn-output.cc for ATMEL AVR micro controllers
+/* Subroutines for insn-output.cc for AVR 8-bit microcontrollers
Copyright (C) 1998-2024 Free Software Foundation, Inc.
Contributed by Denis Chertykov (chertykov@gmail.com)
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h
index 56b7f39b834..1cf4180e534 100644
--- a/gcc/config/avr/avr.h
+++ b/gcc/config/avr/avr.h
@@ -1,5 +1,5 @@
/* Definitions of target machine for GNU compiler,
- for ATMEL AVR at90s8515, ATmega103/103L, ATmega603/603L microcontrollers.
+ for AVR 8-bit microcontrollers.
Copyright (C) 1998-2024 Free Software Foundation, Inc.
Contributed by Denis Chertykov (chertykov@gmail.com)
diff --git a/gcc/config/avr/avr.md b/gcc/config/avr/avr.md
index 520f1fe41a2..429f537b7d4 100644
--- a/gcc/config/avr/avr.md
+++ b/gcc/config/avr/avr.md
@@ -1,5 +1,5 @@
;; Machine description for GNU compiler,
-;; for ATMEL AVR micro controllers.
+;; for AVR 8-bit microcontrollers.
;; Copyright (C) 1998-2024 Free Software Foundation, Inc.
;; Contributed by Denis Chertykov (chertykov@gmail.com)
diff --git a/gcc/config/avr/avr.opt b/gcc/config/avr/avr.opt
index 444ed7edb26..625323f4e6a 100644
--- a/gcc/config/avr/avr.opt
+++ b/gcc/config/avr/avr.opt
@@ -1,4 +1,4 @@
-; Options for the ATMEL AVR port of the compiler.
+; Options for AVR 8-bit microcontrollers.
; Copyright (C) 2005-2024 Free Software Foundation, Inc.
;
diff --git a/gcc/config/avr/avrlibc.h b/gcc/config/avr/avrlibc.h
index fb4ffedcc91..60fce70201c 100644
--- a/gcc/config/avr/avrlibc.h
+++ b/gcc/config/avr/avrlibc.h
@@ -1,5 +1,4 @@
-/* Definitions of target machine for the GNU compiler collection
- for Atmel AVR micro controller if configured for AVR-Libc.
+/* Definitions for AVR 8-bit microcontrollers if configured for AVR-LibC.
Copyright (C) 2012-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay (avr@gjlay.de)
diff --git a/gcc/config/avr/constraints.md b/gcc/config/avr/constraints.md
index 963e23a4d9e..9512302c252 100644
--- a/gcc/config/avr/constraints.md
+++ b/gcc/config/avr/constraints.md
@@ -1,4 +1,4 @@
-;; Constraint definitions for ATMEL AVR micro controllers.
+;; Insn constraint definitions for AVR 8-bit microcontrollers.
;; Copyright (C) 2006-2024 Free Software Foundation, Inc.
;;
;; This file is part of GCC.
diff --git a/gcc/config/avr/driver-avr.cc b/gcc/config/avr/driver-avr.cc
index 92e875a66c9..4dcabc604e8 100644
--- a/gcc/config/avr/driver-avr.cc
+++ b/gcc/config/avr/driver-avr.cc
@@ -1,4 +1,4 @@
-/* Subroutines for the gcc driver.
+/* Subroutines for the gcc driver for AVR 8-bit microcontrollers.
Copyright (C) 2009-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay <avr@gjlay.de>
diff --git a/gcc/config/avr/elf.h b/gcc/config/avr/elf.h
index 0112aa3d432..794f4c9fc0f 100644
--- a/gcc/config/avr/elf.h
+++ b/gcc/config/avr/elf.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 2011-2024 Free Software Foundation, Inc.
+/* Overrides for elfos.h for AVR 8-bit microcontrollers.
+ Copyright (C) 2011-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay (avr@gjlay.de)
This file is part of GCC.
diff --git a/gcc/config/avr/gen-avr-mmcu-specs.cc b/gcc/config/avr/gen-avr-mmcu-specs.cc
index bb94bea12b0..af519c9d87a 100644
--- a/gcc/config/avr/gen-avr-mmcu-specs.cc
+++ b/gcc/config/avr/gen-avr-mmcu-specs.cc
@@ -1,4 +1,5 @@
-/* Copyright (C) 1998-2024 Free Software Foundation, Inc.
+/* Build device-specs for AVR 8-bit microcontrollers.
+ Copyright (C) 1998-2024 Free Software Foundation, Inc.
Contributed by Joern Rennecke
This file is part of GCC.
diff --git a/gcc/config/avr/gen-avr-mmcu-texi.cc b/gcc/config/avr/gen-avr-mmcu-texi.cc
index 70aa430902e..597ba22ccaa 100644
--- a/gcc/config/avr/gen-avr-mmcu-texi.cc
+++ b/gcc/config/avr/gen-avr-mmcu-texi.cc
@@ -1,4 +1,5 @@
-/* Copyright (C) 2012-2024 Free Software Foundation, Inc.
+/* Build texi documentation for option -mmcu for AVR 8-bit microcontrollers.
+ Copyright (C) 2012-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay (avr@gjlay.de)
This file is part of GCC.
diff --git a/gcc/config/avr/predicates.md b/gcc/config/avr/predicates.md
index b21acbe323f..c44ebffc762 100644
--- a/gcc/config/avr/predicates.md
+++ b/gcc/config/avr/predicates.md
@@ -1,4 +1,4 @@
-;; Predicate definitions for ATMEL AVR micro controllers.
+;; Insn predicate definitions for AVR 8-bit microcontrollers.
;; Copyright (C) 2006-2024 Free Software Foundation, Inc.
;;
;; This file is part of GCC.
diff --git a/gcc/config/avr/specs.h b/gcc/config/avr/specs.h
index 0ccc37b8844..a1e2c384a74 100644
--- a/gcc/config/avr/specs.h
+++ b/gcc/config/avr/specs.h
@@ -1,4 +1,4 @@
-/* Specs definitions for Atmel AVR back end.
+/* Specs definitions for AVR 8-bit microcontrollers.
Copyright (C) 2012-2024 Free Software Foundation, Inc.
Contributed by Georg-Johann Lay (avr@gjlay.de)
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi
index d22ccdd9667..62a61104598 100644
--- a/gcc/doc/install.texi
+++ b/gcc/doc/install.texi
@@ -3999,7 +3999,7 @@ GNAT 4.6, 4.9 or 5 release branches are known to succeed.
@end html
@anchor{avr}
@heading avr
-ATMEL AVR-family micro controllers. These are used in embedded
+AVR 8-bit microcontrollers. These are used in embedded
applications. There are no standard Unix configurations.
@ifnothtml
@xref{AVR Options,, AVR Options, gcc, Using the GNU Compiler
More information about the Gcc-cvs
mailing list