summaryrefslogtreecommitdiff
path: root/gcc/ada/a-ngrear.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-07 14:45:51 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-07 14:45:51 +0000
commit44e15e2b70813ee19bee3a5c422d30f869be93bb (patch)
tree547ce03558b4baf7b4fb08c1682c061d275f1ccc /gcc/ada/a-ngrear.ads
parent301d5ec3caa5836aaa51a008a6ff77cf307b3b43 (diff)
downloadgcc-44e15e2b70813ee19bee3a5c422d30f869be93bb.tar.gz
2012-03-07 Gary Dismukes <dismukes@adacore.com>
* exp_ch4.adb (Apply_Accessibility_Check): Call Remove_Side_Effects in the build-in-place case, to ensure that we capture the call and don't end up with two calls. 2012-03-07 Javier Miranda <miranda@adacore.com> * exp_ch6.adb (Expand_Inlined_Call): Skip inlining of functions that return unconstrained types using an extended return statement since the support for inlining these functions has not been yet added to the frontend. * s-vaflop.adb, s-vaflop-vms-alpha.adb: Code reorganization. * a-ngrear.ads: Replace all the Inline_Always pragmas by pragma Inline. * a-ngrear.adb (Eigenvalues, Transpose): Restructured to use extended return statement. * a-strsup.adb, a-stzsup.adb, a-stwisu.adb (Concat, Super_Slice, Super_To_String): Restructured to use extended return statement. * a-chahan.adb (To_Basic, To_Lower, To_Upper): Restructured to use extended return statement. * s-gearop.adb (Diagonal, Matrix_Elementwise_Operation, Vector_Elementwise_Operation, Matrix_Elementwise_Operation, Matrix_Matrix_Scalar_Elementwise_Operation, Vector_Vector_Elementwise_Operation, Vector_Vector_Scalar_Elementwise_Operation, Matrix_Scalar_Elementwise_Operation, Vector_Scalar_Elementwise_Operation, Scalar_Matrix_Elementwise_Operation, Scalar_Vector_Elementwise_Operation, Matrix_Matrix_Product, Matrix_Vector_Product, Outer_Product, Unit_Matrix, Unit_Vector, Vector_Matrix_Product): Restructured to use extended return statement. 2012-03-07 Vincent Pucci <pucci@adacore.com> * sem_ch5.adb (One_Bound): Minor reformatting. 2012-03-07 Tristan Gingold <gingold@adacore.com> * s-osinte-vms-ia64.adb, s-osinte-vms-ia64.ads, s-osinte-vms.adb, s-osinte-vms.ads, gcc-interface/Makefile.in: Merge s-osinte-vms and s-osinte-vms-ia64. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185051 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-ngrear.ads')
-rw-r--r--gcc/ada/a-ngrear.ads24
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/ada/a-ngrear.ads b/gcc/ada/a-ngrear.ads
index f244d6519ce..f03ee37df0a 100644
--- a/gcc/ada/a-ngrear.ads
+++ b/gcc/ada/a-ngrear.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 2009, Free Software Foundation, Inc. --
+-- Copyright (C) 2009-2012, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
@@ -125,15 +125,15 @@ private
-- front end always inline these, the expense of the unconstrained returns
-- can be avoided.
- pragma Inline_Always ("+");
- pragma Inline_Always ("-");
- pragma Inline_Always ("*");
- pragma Inline_Always ("/");
- pragma Inline_Always ("abs");
- pragma Inline_Always (Eigenvalues);
- pragma Inline_Always (Inverse);
- pragma Inline_Always (Solve);
- pragma Inline_Always (Transpose);
- pragma Inline_Always (Unit_Matrix);
- pragma Inline_Always (Unit_Vector);
+ pragma Inline ("+");
+ pragma Inline ("-");
+ pragma Inline ("*");
+ pragma Inline ("/");
+ pragma Inline ("abs");
+ pragma Inline (Eigenvalues);
+ pragma Inline (Inverse);
+ pragma Inline (Solve);
+ pragma Inline (Transpose);
+ pragma Inline (Unit_Matrix);
+ pragma Inline (Unit_Vector);
end Ada.Numerics.Generic_Real_Arrays;