diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-31 08:43:42 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-31 08:43:42 +0000 |
commit | f84c0da6b775eba9eb8d79fadce24169cf11f1f3 (patch) | |
tree | 61b9423513f189f83c625631b581033c832eb05c /gcc/ada/errout.adb | |
parent | 83a0ab2a2fd2930fe97279844d6999d51a8b0d94 (diff) | |
download | gcc-f84c0da6b775eba9eb8d79fadce24169cf11f1f3.tar.gz |
2011-08-31 Jose Ruiz <ruiz@adacore.com>
* s-taprop-linux.adb (Set_Task_Affinity): Avoid the use of anonymous
access types.
* affinity.c (__gnat_set_affinity_mask): Declare index variable.
2011-08-31 Yannick Moy <moy@adacore.com>
* sem_ch8.adb (Analyze_Subprogram_Renaming): Refine expander test in
full-expander test.
Minor reformatting, renaming ALFA in Alfa (we dropped acronym)
* einfo.adb (Primitive_Operations): Correctly return list of primitive
operations in a case where it returned previously No_Elist.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/errout.adb')
-rw-r--r-- | gcc/ada/errout.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/errout.adb b/gcc/ada/errout.adb index ac880eca235..88482898a92 100644 --- a/gcc/ada/errout.adb +++ b/gcc/ada/errout.adb @@ -2849,10 +2849,10 @@ package body Errout is elsif Msg = "size for& too small, minimum allowed is ^" then - -- Suppress "size too small" errors in CodePeer mode and ALFA mode, + -- Suppress "size too small" errors in CodePeer mode and Alfa mode, -- since pragma Pack is also ignored in these configurations. - if CodePeer_Mode or ALFA_Mode then + if CodePeer_Mode or Alfa_Mode then return True; -- When a size is wrong for a frozen type there is no explicit size |