mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +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:
@ -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>
|
2019-07-17 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||||
|
|
||||||
* config/tc-bpf.c (md_pseudo_table): .half, .word and .dword.
|
* config/tc-bpf.c (md_pseudo_table): .half, .word and .dword.
|
||||||
|
|
||||||
* testsuite/gas/bpf/data.s: New file.
|
* testsuite/gas/bpf/data.s: New file.
|
||||||
* testsuite/gas/bpf/data.d: Likewise.
|
* testsuite/gas/bpf/data.d: Likewise.
|
||||||
* testsuite/gas/bpf/data-be.d: Likewise.
|
* testsuite/gas/bpf/data-be.d: Likewise.
|
||||||
|
@ -41,6 +41,7 @@ const pseudo_typeS md_pseudo_table[] =
|
|||||||
{ "half", cons, 2 },
|
{ "half", cons, 2 },
|
||||||
{ "word", cons, 4 },
|
{ "word", cons, 4 },
|
||||||
{ "dword", cons, 8 },
|
{ "dword", cons, 8 },
|
||||||
|
{ "lcomm", s_lcomm, 1 },
|
||||||
{ NULL, NULL, 0 }
|
{ NULL, NULL, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user