Skip to content

Commit 7705701

Browse files
Change ordering and fix nits
This addresses the changes requested by Chris, most importantlt the ordering of the priority string and the arch string. Otherwise its working nits.
1 parent 496c605 commit 7705701

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

main/acle.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2843,14 +2843,14 @@ For example, it can be implemented as:
28432843

28442844
### Target version strings
28452845

2846-
A target version string is of the following form:
2846+
A target version string has the following form:
28472847

28482848
```
28492849
<target version string> := 'default'
28502850
| <version string>
2851-
<version string> := <priority string> ';' <arch strings>
2851+
<version string> := <arch strings> ';' <priority string>
28522852
| <arch strings>
2853-
<priority string> := 'priority=[1-31]'
2853+
<priority string> := 'priority=[1-255]'
28542854
<arch strings> := <arch strings> '+' arch extension
28552855
| arch extension
28562856
```
@@ -2863,8 +2863,8 @@ Valid string examples are given below
28632863
default
28642864
dotprod
28652865
dotprod+flagm
2866-
priority=5;sve
2867-
priority=23;sve2+sme2
2866+
sve;priority=5
2867+
sve2+sme2;priority=23
28682868
```
28692869

28702870
### Name mangling
@@ -2883,7 +2883,7 @@ the [[cxxabi]](#cxxabi), and it is defined as follows:
28832883
<vendor specific suffix> := `_` followed by token obtained from the tables below and prefixed with `M`
28842884
```
28852885

2886-
Note, priority values do not affect mangling.
2886+
Priority values do not affect mangling.
28872887

28882888
If multiple features are requested then those shall be appended in lexicographic
28892889
order and prefixed with `M`. The mangled name shall contain a unique set of

0 commit comments

Comments
 (0)