Merge branches 'ftrace', 'gic', 'io', 'kexec', 'mod', 'sa11x0', 'sh' and 'versatile' into devel
This commit is contained in:
parent
3c0eee3fe6
ed60453fa8
ac61d143ff
28257f7fde
b230653132
50005a8deb
cf562b4a55
3d09fbcd26
8a9618f5df
commit
31edf274f9
84 changed files with 1614 additions and 755 deletions
|
@ -275,11 +275,12 @@ static uint_t *sift_rel_mcount(uint_t *mlocp,
|
|||
Elf_Sym const *const symp =
|
||||
&sym0[Elf_r_sym(relp)];
|
||||
char const *symname = &str0[w(symp->st_name)];
|
||||
char const *mcount = '_' == gpfx ? "_mcount" : "mcount";
|
||||
|
||||
if ('.' == symname[0])
|
||||
++symname; /* ppc64 hack */
|
||||
if (0 == strcmp((('_' == gpfx) ? "_mcount" : "mcount"),
|
||||
symname))
|
||||
if (0 == strcmp(mcount, symname) ||
|
||||
(altmcount && 0 == strcmp(altmcount, symname)))
|
||||
mcountsym = Elf_r_sym(relp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue