[Ada] Disregard alignment issues in CodePeer mode
2018-05-28 Arnaud Charlet <charlet@adacore.com> gcc/ada/ * exp_util.adb (Possible_Bit_Aligned_Component): Always return False in codepeer mode. From-SVN: r260828
This commit is contained in:
parent
7ddbf09d33
commit
f167c73516
@ -1,3 +1,8 @@
|
||||
2018-05-28 Arnaud Charlet <charlet@adacore.com>
|
||||
|
||||
* exp_util.adb (Possible_Bit_Aligned_Component): Always return False in
|
||||
codepeer mode.
|
||||
|
||||
2018-05-28 Arnaud Charlet <charlet@adacore.com>
|
||||
|
||||
* exp_unst.adb: Fix typo.
|
||||
|
@ -10738,6 +10738,12 @@ package body Exp_Util is
|
||||
return False;
|
||||
end if;
|
||||
|
||||
-- There are never alignment issues in CodePeer mode
|
||||
|
||||
if CodePeer_Mode then
|
||||
return False;
|
||||
end if;
|
||||
|
||||
case Nkind (N) is
|
||||
|
||||
-- Case of indexed component
|
||||
|
Loading…
x
Reference in New Issue
Block a user