target-s390x: Mark check_privileged() as !CONFIG_USER_ONLY
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 26 Jan 2015 16:28:30 +0000 (16:28 +0000)
committerRichard Henderson <rth@twiddle.net>
Tue, 3 Feb 2015 20:25:48 +0000 (12:25 -0800)
The function check_privileged() is only used in the softmmu configs;
wrap it in an #ifndef CONFIG_USER_ONLY to avoid clang warnings on the
linux-user builds.

[rth: Remove inline marker too; it was only there to prevent exactly
this warning in GCC.]

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1419373100-17690-2-git-send-email-peter.maydell@linaro.org
Signed-off-by: Richard Henderson <rth@twiddle.net>
target-s390x/translate.c

index e7a6c1d621bea96d333b129be26030ad9c30eabe..8b36eca7182b50b5e4ff28e35d02163aabfb99fa 100644 (file)
@@ -317,12 +317,14 @@ static inline void gen_illegal_opcode(DisasContext *s)
     gen_program_exception(s, PGM_SPECIFICATION);
 }
 
-static inline void check_privileged(DisasContext *s)
+#ifndef CONFIG_USER_ONLY
+static void check_privileged(DisasContext *s)
 {
     if (s->tb->flags & (PSW_MASK_PSTATE >> 32)) {
         gen_program_exception(s, PGM_PRIVILEGED);
     }
 }
+#endif
 
 static TCGv_i64 get_address(DisasContext *s, int x2, int b2, int d2)
 {