Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(840)

Side by Side Diff: mozilla/security/nss/lib/freebl/mpi/mpi_x86_asm.c

Issue 10961060: Update NSS to NSS 3.14 Beta 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Merge nss-static2.patch into nss-static.patch Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * mpi_x86.c - MSVC inline assembly implementation of s_mpv_ functions. 2 * mpi_x86_asm.c - MSVC inline assembly implementation of s_mpv_ functions.
3 * 3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public 4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 7
8 #include "mpi-priv.h" 8 #include "mpi-priv.h"
9 9
10 static int is_sse = -1; 10 static int is_sse = -1;
11 extern unsigned long s_mpi_is_sse2(); 11 extern unsigned long s_mpi_is_sse2();
12 12
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 mov ebx,[esp+20] 526 mov ebx,[esp+20]
527 mov [ebx],eax 527 mov [ebx],eax
528 mov ebx,[esp+24] 528 mov ebx,[esp+24]
529 mov [ebx],edx 529 mov [ebx],edx
530 xor eax,eax ; return zero 530 xor eax,eax ; return zero
531 pop ebx 531 pop ebx
532 ret 532 ret
533 nop 533 nop
534 } 534 }
535 } 535 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698