mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 13:31:04 +08:00
pointer-compare-1.c: Add __attribute__((used))
c-c++-common/asan/pointer-compare-1.c assumes the certain order for variable placement. Add __attribute__((used)) to avoid variable placement changes due to SHF_GNU_RETAIN. PR testsuite/97803 * c-c++-common/asan/pointer-compare-1.c (global1): Add __attribute__((used)) (global2): Likewise. (small_global): Likewise. (large_global): Likewise.
This commit is contained in:
parent
b2099e9fd9
commit
9dbf8dc7a9
@ -14,12 +14,13 @@ foo (char *p, char *q)
|
||||
v = p > q;
|
||||
}
|
||||
|
||||
char global1[100] = {}, global2[100] = {};
|
||||
char __attribute__((used)) global1[100] = {};
|
||||
char __attribute__((used)) global2[100] = {};
|
||||
char __attribute__((used)) smallest_global[5] = {};
|
||||
char small_global[7] = {};
|
||||
char __attribute__((used)) small_global[7] = {};
|
||||
char __attribute__((used)) little_global[10] = {};
|
||||
char __attribute__((used)) medium_global[4000] = {};
|
||||
char large_global[5000] = {};
|
||||
char __attribute__((used)) large_global[5000] = {};
|
||||
char __attribute__((used)) largest_global[6000] = {};
|
||||
|
||||
int
|
||||
|
Loading…
x
Reference in New Issue
Block a user