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

Side by Side Diff: src/trusted/platform_qualify/arch/mips/nacl_qualify_fpu.c

Issue 10919162: [MIPS] Implementation of sel_ldr for MIPS architecture. (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 3 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
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #include <setjmp.h>
8 #include <signal.h>
9 #include <stdint.h>
10 #include <stdlib.h>
11
12 /*
13 * Returns 1 if FPU instructions work.
14 */
15 int NaClQualifyFpu(void) {
16 // TODO(petarj): Find an ellegant way to check if FPU is present
Mark Seaborn 2012/09/08 02:43:14 Spelling: "elegant" Also, please use C-style comme
petarj 2012/09/11 16:58:13 Ok, file omitted for now.
17 return 1;
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698