qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5139] Build fix for gcc-3.3.


From: Thiemo Seufer
Subject: [Qemu-devel] [5139] Build fix for gcc-3.3.
Date: Tue, 02 Sep 2008 17:39:46 +0000

Revision: 5139
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5139
Author:   ths
Date:     2008-09-02 17:39:45 +0000 (Tue, 02 Sep 2008)

Log Message:
-----------
Build fix for gcc-3.3.

Modified Paths:
--------------
    trunk/target-mips/translate_init.c

Modified: trunk/target-mips/translate_init.c
===================================================================
--- trunk/target-mips/translate_init.c  2008-09-02 16:33:23 UTC (rev 5138)
+++ trunk/target-mips/translate_init.c  2008-09-02 17:39:45 UTC (rev 5139)
@@ -439,6 +439,7 @@
     }
 }
 
+#ifndef CONFIG_USER_ONLY
 static void no_mmu_init (CPUMIPSState *env, const mips_def_t *def)
 {
     env->tlb->nb_tlb = 1;
@@ -484,6 +485,7 @@
     env->CP0_Random = env->tlb->nb_tlb - 1;
     env->tlb->tlb_in_use = env->tlb->nb_tlb;
 }
+#endif /* CONFIG_USER_ONLY */
 
 static void fpu_init (CPUMIPSState *env, const mips_def_t *def)
 {
@@ -566,8 +568,10 @@
     env->CP0_SRSConf4 = def->CP0_SRSConf4;
     env->insn_flags = def->insn_flags;
 
+#ifndef CONFIG_USER_ONLY
     if (!env->user_mode_only)
         mmu_init(env, def);
+#endif
     fpu_init(env, def);
     mvp_init(env, def);
     return 0;






reply via email to

[Prev in Thread] Current Thread [Next in Thread]