projects
/
platform
/
upstream
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb84595
)
[Ada] Refactor repeated code for component attributes
author
Piotr Trojanek
<trojanek@adacore.com>
Mon, 23 Nov 2020 22:44:06 +0000
(23:44 +0100)
committer
Pierre-Marie de Rodat
<derodat@adacore.com>
Tue, 15 Dec 2020 11:41:51 +0000
(06:41 -0500)
gcc/ada/
* sem_attr.adb (Analyze_Attribute): Merge identical code for
First_Bit/Last_Bit and Position attributes.
gcc/ada/sem_attr.adb
patch
|
blob
|
history
diff --git
a/gcc/ada/sem_attr.adb
b/gcc/ada/sem_attr.adb
index
30fdfb8
..
537da93
100644
(file)
--- a/
gcc/ada/sem_attr.adb
+++ b/
gcc/ada/sem_attr.adb
@@
-4094,6
+4094,7
@@
package body Sem_Attr is
when Attribute_First_Bit
| Attribute_Last_Bit
+ | Attribute_Position
=>
Check_Component;
Set_Etype (N, Universal_Integer);
@@
-5305,9
+5306,7
@@
package body Sem_Attr is
-- Position --
--------------
- when Attribute_Position =>
- Check_Component;
- Set_Etype (N, Universal_Integer);
+ -- Shares processing with First_Bit attribute
----------
-- Pred --