Fix a "mixed decls and code" warning.
[mono.git] / mono / utils / mono-hwcap-empty.c
1 /*
2  * mono-hwcap-empty.c: Dummy file with no feature detection
3  *
4  * Authors:
5  *    Alex Rønne Petersen (alexrp@xamarin.com)
6  *    Elijah Taylor (elijahtaylor@google.com)
7  *    Miguel de Icaza (miguel@xamarin.com)
8  *    Neale Ferguson (Neale.Ferguson@SoftwareAG-usa.com)
9  *    Paolo Molaro (lupus@xamarin.com)
10  *    Rodrigo Kumpera (kumpera@gmail.com)
11  *    Sebastien Pouliot (sebastien@xamarin.com)
12  *    Zoltan Varga (vargaz@xamarin.com)
13  *
14  * Copyright 2003 Ximian, Inc.
15  * Copyright 2003-2011 Novell, Inc
16  * Copyright 2006 Broadcom
17  * Copyright 2007-2008 Andreas Faerber
18  * Copyright 2011-2013 Xamarin Inc
19  */
20
21 #include "mono/utils/mono-hwcap.h"
22
23 void
24 mono_hwcap_arch_init (void)
25 {
26         /* When the runtime is built as a cross compiler, we don't want to do
27          * any CPU feature detection since we're most likely not running on the
28          * same kind of CPU as the one the resulting code will run on.
29          *
30          * This file is also used for architectures that haven't specified a
31          * mono-hwcap-$TARGET.c file in Makefile.am.
32          */
33 }
34
35 void
36 mono_hwcap_print (FILE *f)
37 {
38 }