<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133864>133864</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
IR parser accepts missing comma before align in global variable declaration and emits as attribute
</td>
</tr>
<tr>
<th>Labels</th>
<td>
llvm:asmparser,
accepts-invalid
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
arsenm
</td>
</tr>
</table>
<pre>
```
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
; CHECK: @code_model_tiny_drop = global i32 0, code_model "tiny" #0
; CHECK: attributes #0 = { align=4 }
@missing_comma_after_code_model = global i32 0, code_model "tiny" align 4
```
There is a missing comma after the code_model marker, before align. This should probably be rejected. I'm not sure how this ends up getting interpreted, but when printed it looks like it was mishandled. The special align directive on the global declaration is missing, and replaced with an attribute group as if it were treated as an ordinary attribute on a function
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJyMk0GP6ygMxz8NuVhTUUgm7SGHTrvVPq20h6fZc-UEN_EOgQhIR_32K9I8TXdOT4oUAeb_s_82GCP3jqgR1ZuoTgXOafChwRDJjUXrzb0Rr3L95EHoN_j5z99CH8Da2_iCEYQ-glBVBFEfH5uGH4szWzoO1H0s5_n2Q-D45x_Hv7KEKGXnDV1Gb8heErv7xQQ_gdAn6K1v0QJrBVKoI3wFglAqxwqlQCgtv6tiSoHbOVFcjhc1Ub8BWu6d0KcSRH1asynlyDGy6y-dH0e84DVRuDyzfjuVRR7KVfjZM3l4HygQcASElQcLDxYepIGeRUcMHxQyqaWrD_SQ3gC8DxwhDn62BqbgW2ztHVqCQP9Sl8hs4IdQ9QjOJ4hzIBj8J6R8iZyJME_QU0qZzi5RmAIlMgtnTvA5kIMp5BMDnMB6_xHB8gfl1SfGnPqAztgMeh8I4kQdo10rNxyoS3wj8G6paLXNUGcxYGLvsgNr_ZmKzkCgyWJHBj45DYDuq3vQBz9PgBH4umSQLUyBMOeHMcf6YNhhuD9d8g4QrrPrFl5hGm32eo8FNdu61OWulkoXQ1O2-_paKUNUyR1W3b7Veq-3r60kVKUuC26UVJUs5VZWVS3Vpt5h_XrVFe2uqm3rrSgljch2k0d-40NfcIwzNVutd69lYbElG5dXpVQOEfqAcZzywwpCKaGOQinsOppSfGF3Q8sm71enIjTLM2rnPopSWo4pflESJ0vNj5_wkIJV4ttcPQ8OsPvVixsGxtbS_5qS20Ajp7i4-svJYg62GVKaotAHoc5CnXtOw9xuOj8KdV5qevxepuDzAAp1XjyIQp1XG26N-i8AAP__xhVveQ">