summaryrefslogtreecommitdiff
path: root/src/thread/microblaze/syscall_cp.s
AgeCommit message (Collapse)AuthorFilesLines
2015-04-14consistently use hidden visibility for cancellable syscall internalsRich Felker1-3/+9
in a few places, non-hidden symbols were referenced from asm in ways that assumed ld-time binding. while these is no semantic reason these symbols need to be hidden, fixing the references without making them hidden was going to be ugly, and hidden reduces some bloat anyway. in the asm files, .global/.hidden directives have been moved to the top to unclutter the actual code.
2012-10-17fix microblaze asm relocations for shared libcRich Felker1-1/+1
only @PLT relocations are considered functions for purposes of -Bsymbolic-functions, so always use @PLT. it should not hurt in the static-linked case.
2012-09-29microblaze portRich Felker1-0/+19
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.