blob: 80ad1b7ea7709b65b440bf108d7d20748c407ca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0 */
MEMSET_FN(memset_orig,
mem_alloc,
mem_free,
"x86-64-unrolled",
"unrolled memset() in arch/x86/lib/memset_64.S")
MEMSET_FN(__memset,
mem_alloc,
mem_free,
"x86-64-stosq",
"movsq-based memset() in arch/x86/lib/memset_64.S")
|