projects
/
external
/
binutils.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[binutils, ARM, 6/16] New BF instruction for Armv8.1-M Mainline
[external/binutils.git]
/
ld
/
testsuite
/
ld-elf
/
pr14323-2.c
1
int foo __attribute__ ((section ("_data_foo"))) = 0;
2
extern int foo_alias __attribute__ ((weak, alias ("foo")));
3
extern char __start__data_foo;
4
asm (".type __start__data_foo,%object");
5
int x1 = 1;
6
int x2 = 2;
7
8
char *
9
bar ()
10
{
11
foo = -1;
12
return &__start__data_foo;
13
}