aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Weddington <eweddington@cso.atmel.com>2007-09-03 21:17:14 +0000
committerAnatoly Sokolov <aesok@gcc.gnu.org>2007-09-04 01:17:14 +0400
commit79532d34723e72f2171cf300d31e51c76a033bf0 (patch)
tree5ae23a6ae040844e7fc0293794eacae7f7694193
parent93976860d0239acf537aa3cd902f69e7b708d95d (diff)
downloadgcc-79532d34723e72f2171cf300d31e51c76a033bf0.zip
gcc-79532d34723e72f2171cf300d31e51c76a033bf0.tar.gz
gcc-79532d34723e72f2171cf300d31e51c76a033bf0.tar.bz2
* doc/extend.texi: Document progmem attribute for AVR.
From-SVN: r128061
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi10
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 82dabe4..158cf38c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-03 Eric Weddington <eweddington@cso.atmel.com>
+
+ * doc/extend.texi: Document progmem attribute for AVR.
+
2007-09-03 Anatoly Sokolov <aesok@post.ru>
PR target/28902
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 5ae033c..2016e45 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -3677,6 +3677,16 @@ placed in either the @code{.bss_below100} section or the
@end table
+@subsection AVR Variable Attributes
+
+@table @code
+@item progmem
+@cindex @code{progmem} variable attribute
+The @code{progmem} attribute is used on the AVR to place data in the Program
+Memory address space. The AVR is a Harvard Architecture processor and data
+normally resides in the Data Memory address space.
+@end table
+
@node Type Attributes
@section Specifying Attributes of Types
@cindex attribute of types