mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-30 13:33:53 +08:00
gas: .lcomm gets an alignment argument in eBPF
gas/ChangeLog: 2019-07-17 Jose E. Marchesi <jose.marchesi@oracle.com> * config/tc-bpf.c: Make .lcomm to get a third argument with the alignment.
This commit is contained in:
parent
f264fab3cd
commit
d0044bac9e
@ -1,6 +1,12 @@
|
||||
2019-07-17 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* config/tc-bpf.c: Make .lcomm to get a third argument with the
|
||||
alignment.
|
||||
|
||||
2019-07-17 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* config/tc-bpf.c (md_pseudo_table): .half, .word and .dword.
|
||||
|
||||
* testsuite/gas/bpf/data.s: New file.
|
||||
* testsuite/gas/bpf/data.d: Likewise.
|
||||
* testsuite/gas/bpf/data-be.d: Likewise.
|
||||
|
@ -41,7 +41,8 @@ const pseudo_typeS md_pseudo_table[] =
|
||||
{ "half", cons, 2 },
|
||||
{ "word", cons, 4 },
|
||||
{ "dword", cons, 8 },
|
||||
{ NULL, NULL, 0 }
|
||||
{ "lcomm", s_lcomm, 1 },
|
||||
{ NULL, NULL, 0 }
|
||||
};
|
||||
|
||||
/* ISA handling. */
|
||||
|
Loading…
Reference in New Issue
Block a user