mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
Add __attribute__((__aligned__(1))) to unaligned symbols from scripts (for s390).
gold/ * testsuite/binary_test.cc: Add __attribute__((aligned(1))). * testsuite/script_test_12a.c: Likewise. * testsuite/script_test_1a.cc: Likewise. * testsuite/script_test_2.cc: Likewise.
This commit is contained in:

committed by
Cary Coutant

parent
bd890911da
commit
238830c697
@ -1,3 +1,10 @@
|
|||||||
|
2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
|
||||||
|
|
||||||
|
* testsuite/binary_test.cc: Add __attribute__((aligned(1))).
|
||||||
|
* testsuite/script_test_12a.c: Likewise.
|
||||||
|
* testsuite/script_test_1a.cc: Likewise.
|
||||||
|
* testsuite/script_test_2.cc: Likewise.
|
||||||
|
|
||||||
2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
|
2015-10-28 Marcin Kościelnicki <koriakin@0x04.net>
|
||||||
|
|
||||||
* testsuite/debug_msg.sh: Accept more fuzz in line numbers.
|
* testsuite/debug_msg.sh: Accept more fuzz in line numbers.
|
||||||
|
@ -28,9 +28,9 @@
|
|||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
extern char _binary_binary_txt_start[];
|
extern char _binary_binary_txt_start[] __attribute__((__aligned__(1)));
|
||||||
extern char _binary_binary_txt_end[];
|
extern char _binary_binary_txt_end[] __attribute__((__aligned__(1)));
|
||||||
extern char _binary_binary_txt_size[];
|
extern char _binary_binary_txt_size[] __attribute__((__aligned__(1)));
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int, char**)
|
main(int, char**)
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
|
|
||||||
extern int test_array_start;
|
extern int test_array_start;
|
||||||
extern int test_array_end;
|
extern int test_array_end;
|
||||||
extern char interleaved;
|
extern char interleaved __attribute__((__aligned__(1)));
|
||||||
|
|
||||||
int
|
int
|
||||||
main(void)
|
main(void)
|
||||||
|
@ -24,7 +24,14 @@
|
|||||||
|
|
||||||
#include "script_test_1.h"
|
#include "script_test_1.h"
|
||||||
|
|
||||||
extern char a, b, c, d, e, f, g;
|
extern char
|
||||||
|
a __attribute__((__aligned__(1))),
|
||||||
|
b __attribute__((__aligned__(1))),
|
||||||
|
c __attribute__((__aligned__(1))),
|
||||||
|
d __attribute__((__aligned__(1))),
|
||||||
|
e __attribute__((__aligned__(1))),
|
||||||
|
f __attribute__((__aligned__(1))),
|
||||||
|
g __attribute__((__aligned__(1)));
|
||||||
int sym = 3;
|
int sym = 3;
|
||||||
int common_sym;
|
int common_sym;
|
||||||
|
|
||||||
|
@ -28,15 +28,15 @@
|
|||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
extern char start_test_area[];
|
extern char start_test_area[] __attribute__((__aligned__(1)));
|
||||||
extern char start_test_area_1[];
|
extern char start_test_area_1[] __attribute__((__aligned__(1)));
|
||||||
extern char start_data[];
|
extern char start_data[] __attribute__((__aligned__(1)));
|
||||||
extern char end_data[];
|
extern char end_data[] __attribute__((__aligned__(1)));
|
||||||
extern char start_fill[];
|
extern char start_fill[] __attribute__((__aligned__(1)));
|
||||||
extern char end_fill[];
|
extern char end_fill[] __attribute__((__aligned__(1)));
|
||||||
extern char end_test_area[];
|
extern char end_test_area[] __attribute__((__aligned__(1)));
|
||||||
extern char test_addr[];
|
extern char test_addr[] __attribute__((__aligned__(1)));
|
||||||
extern char test_addr_alias[];
|
extern char test_addr_alias[] __attribute__((__aligned__(1)));
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int, char**)
|
main(int, char**)
|
||||||
|
Reference in New Issue
Block a user