summaryrefslogtreecommitdiff
path: root/gcc/ada/g-altive.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-04 11:57:38 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-04 11:57:38 +0000
commitc4866605abc8d4a0002eb5226c2e40daea95bbc6 (patch)
treeadf39c1d4a047200bbc2e48560a200b9fb9477f3 /gcc/ada/g-altive.ads
parentaffd9972925e47179858b6797880a134a0ba0882 (diff)
downloadgcc-c4866605abc8d4a0002eb5226c2e40daea95bbc6.tar.gz
2011-08-04 Emmanuel Briot <briot@adacore.com>
* projects.texi: Added documentation for the IDE'Gnat project file attribute. 2011-08-04 Nicolas Roche <roche@adacore.com> * gnat_rm.texi: Minor editing. 2011-08-04 Javier Miranda <miranda@adacore.com> * bindgen.adb (Gen_Adafinal_Ada): Do not differentiate the main case and the library case for VM targets. (Gen_Adainit_Ada): Likewise. 2011-08-04 Robert Dewar <dewar@adacore.com> * g-altive.ads: Minor comment updates. * prj-nmsc.adb: Minor reformatting. 2011-08-04 Javier Miranda <miranda@adacore.com> * opt.ads (Normalize_Scalars_Config): Value of the configuration switch set by pragma Normalize_Scalars when it appears in the gnat.adc file. (Normalize_Scalars): New field for record Config_Switches_Type. Used to save and restore settings of this pragma. * opt.adb (Register_Opt_Config_Switches, Save_Opt_Config_Switches, Restore_Opt_Config_Switches): Add missing support for Normalize_Scalars. 2011-08-04 Vincent Celier <celier@adacore.com> * gnat_ugn.texi: Document gnatlink options -M and -M=mapfile git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177360 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/g-altive.ads')
-rw-r--r--gcc/ada/g-altive.ads15
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/ada/g-altive.ads b/gcc/ada/g-altive.ads
index 9ce80df3f06..27b991503b6 100644
--- a/gcc/ada/g-altive.ads
+++ b/gcc/ada/g-altive.ads
@@ -46,13 +46,14 @@
-- and instruction set.
-- These documents, as well as a number of others of general interest on the
--- AltiVec technology, are available from the Motorola/AltiVec Web site at
+-- AltiVec technology, are available from the Motorola/AltiVec Web site at:
-- http://www.freescale.com/altivec
-- The binding interface is structured to allow alternate implementations:
-- for real AltiVec capable targets, and for other targets. In the latter
--- case, everything is emulated in software. We refer to the two versions as:
+-- case, everything is emulated in software. The two versions are referred
+-- to as:
-- o The Hard binding for AltiVec capable targets (with the appropriate
-- hardware support and corresponding instruction set)
@@ -60,12 +61,12 @@
-- o The Soft binding for other targets (with the low level primitives
-- emulated in software).
--- We also offer interfaces not strictly part of the base AltiVec API, such
--- as vector conversions to/from array representations, which are of interest
--- for client applications (e.g. for vector initialization purposes) and may
--- also be used as implementation facilities.
+-- In addition, interfaces that are not strictly part of the base AltiVec API
+-- are provided, such as vector conversions to and from array representations,
+-- which are of interest for client applications (e.g. for vector
+-- initialization purposes).
--- Only the soft binding is available today.
+-- Only the soft binding is available today
-----------------------------------------
-- General package architecture survey --