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

Unified Diff: nss/mozilla/security/nss/lib/freebl/mpi/mpi_mac.c

Issue 10828060: Use the ARM assembly code in mpi_arm.c for iOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Sync with tip of tree and use -include <forced_include_header> Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: nss/mozilla/security/nss/lib/freebl/mpi/mpi_mac.c
===================================================================
--- nss/mozilla/security/nss/lib/freebl/mpi/mpi_mac.c (revision 0)
+++ nss/mozilla/security/nss/lib/freebl/mpi/mpi_mac.c (revision 0)
@@ -0,0 +1,9 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/* Include the appropriate assembly code file for Mac OS X and iOS. */
+
+#if defined(__arm__)
+#include "mpi_arm.c"
+#endif
Property changes on: nss/mozilla/security/nss/lib/freebl/mpi/mpi_mac.c
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « nss/mozilla/security/nss/lib/freebl/mpi/mpi_arm.c ('k') | nss/nss.gyp » ('j') | nss/nss.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698