/* Variable containing a pointer to the bzero function to use.
* Initially points to a function that detects which implementation
* should be used, and then updates the variable. */
- .long fast_bzero_detect
+ .long GNAME(fast_bzero_detect)
\f
.text
.align align_8byte,0x90
TYPE(GNAME(fast_bzero))
GNAME(fast_bzero):
/* Indirect function call */
- jmp *fast_bzero_pointer
+ jmp *GNAME(fast_bzero_pointer)
SIZE(GNAME(fast_bzero))
\f
* for all non-SSE2 processors.
*/
Lbase:
- movl $fast_bzero_base, fast_bzero_pointer
+ movl $GNAME(fast_bzero_base), GNAME(fast_bzero_pointer)
jmp Lrestore
Lsse2:
- movl $fast_bzero_sse, fast_bzero_pointer
+ movl $GNAME(fast_bzero_sse), GNAME(fast_bzero_pointer)
jmp Lrestore
Lrestore:
pop %ecx
pop %ebx
pop %eax
- jmp *fast_bzero_pointer
+ jmp *GNAME(fast_bzero_pointer)
SIZE(GNAME(fast_bzero_detect))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.8.25"
+"0.9.8.26"