summaryrefslogtreecommitdiff
path: root/gcc/ada/bcheck.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2015-11-25 15:10:52 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2015-11-25 15:10:52 +0000
commit559323109a4199620e04a1efc0578036554e4e23 (patch)
treee779966df341a0b8d579c693dc4abe59e319a575 /gcc/ada/bcheck.adb
parentdecb95fccf1417e1dfc71bd515b5be472b1b4145 (diff)
downloadgcc-559323109a4199620e04a1efc0578036554e4e23.tar.gz
2015-11-25 Vincent Celier <celier@adacore.com>
* gnatcmd.adb: When <target>-gnat is called with switch -P and a GPR tool is invoked, invoke the GPR tool with switch --target=<target>. 2015-11-25 Hristian Kirtchev <kirtchev@adacore.com> * opt.adb, bcheck.adb: Minor reformatting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230876 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/bcheck.adb')
-rw-r--r--gcc/ada/bcheck.adb9
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ada/bcheck.adb b/gcc/ada/bcheck.adb
index fcfb2f489bf..66341b44317 100644
--- a/gcc/ada/bcheck.adb
+++ b/gcc/ada/bcheck.adb
@@ -1176,16 +1176,17 @@ package body Bcheck is
begin
Check_Mechanism : for A1 in ALIs.First + 1 .. ALIs.Last loop
if (ALIs.Table (A1).Zero_Cost_Exceptions /=
- ALIs.Table (ALIs.First).Zero_Cost_Exceptions)
+ ALIs.Table (ALIs.First).Zero_Cost_Exceptions)
or else
(ALIs.Table (A1).Frontend_Exceptions /=
- ALIs.Table (ALIs.First).Frontend_Exceptions)
+ ALIs.Table (ALIs.First).Frontend_Exceptions)
then
Error_Msg_File_1 := ALIs.Table (A1).Sfile;
Error_Msg_File_2 := ALIs.Table (ALIs.First).Sfile;
- Consistency_Error_Msg ("{ and { compiled with different "
- & "exception handling mechanisms");
+ Consistency_Error_Msg
+ ("{ and { compiled with different exception handling "
+ & "mechanisms");
end if;
end loop Check_Mechanism;
end Check_Consistent_Exception_Handling;