.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /*************************************************************************** |
---|
2 | 3 | * Copyright (C) 2006 by Joachim Fritschi, <jfritschi@freenet.de> * |
---|
3 | 4 | * * |
---|
4 | | -* This program is free software; you can redistribute it and/or modify * |
---|
5 | | -* it under the terms of the GNU General Public License as published by * |
---|
6 | | -* the Free Software Foundation; either version 2 of the License, or * |
---|
7 | | -* (at your option) any later version. * |
---|
8 | | -* * |
---|
9 | | -* This program is distributed in the hope that it will be useful, * |
---|
10 | | -* but WITHOUT ANY WARRANTY; without even the implied warranty of * |
---|
11 | | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
---|
12 | | -* GNU General Public License for more details. * |
---|
13 | | -* * |
---|
14 | | -* You should have received a copy of the GNU General Public License * |
---|
15 | | -* along with this program; if not, write to the * |
---|
16 | | -* Free Software Foundation, Inc., * |
---|
17 | | -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
---|
18 | 5 | ***************************************************************************/ |
---|
19 | 6 | |
---|
20 | 7 | .file "twofish-i586-asm.S" |
---|
.. | .. |
---|
220 | 207 | xor %esi, d ## D;\ |
---|
221 | 208 | ror $1, d ## D; |
---|
222 | 209 | |
---|
223 | | -ENTRY(twofish_enc_blk) |
---|
| 210 | +SYM_FUNC_START(twofish_enc_blk) |
---|
224 | 211 | push %ebp /* save registers according to calling convention*/ |
---|
225 | 212 | push %ebx |
---|
226 | 213 | push %esi |
---|
.. | .. |
---|
273 | 260 | pop %ebx |
---|
274 | 261 | pop %ebp |
---|
275 | 262 | mov $1, %eax |
---|
276 | | - ret |
---|
277 | | -ENDPROC(twofish_enc_blk) |
---|
| 263 | + RET |
---|
| 264 | +SYM_FUNC_END(twofish_enc_blk) |
---|
278 | 265 | |
---|
279 | | -ENTRY(twofish_dec_blk) |
---|
| 266 | +SYM_FUNC_START(twofish_dec_blk) |
---|
280 | 267 | push %ebp /* save registers according to calling convention*/ |
---|
281 | 268 | push %ebx |
---|
282 | 269 | push %esi |
---|
.. | .. |
---|
330 | 317 | pop %ebx |
---|
331 | 318 | pop %ebp |
---|
332 | 319 | mov $1, %eax |
---|
333 | | - ret |
---|
334 | | -ENDPROC(twofish_dec_blk) |
---|
| 320 | + RET |
---|
| 321 | +SYM_FUNC_END(twofish_dec_blk) |
---|