aboutsummaryrefslogtreecommitdiff
path: root/target/ppc/translate/misc-impl.c.inc
diff options
context:
space:
mode:
Diffstat (limited to 'target/ppc/translate/misc-impl.c.inc')
-rw-r--r--target/ppc/translate/misc-impl.c.inc10
1 files changed, 10 insertions, 0 deletions
diff --git a/target/ppc/translate/misc-impl.c.inc b/target/ppc/translate/misc-impl.c.inc
index c1661d2f43..cbf82b1ea0 100644
--- a/target/ppc/translate/misc-impl.c.inc
+++ b/target/ppc/translate/misc-impl.c.inc
@@ -145,3 +145,13 @@ static bool trans_EIEIO(DisasContext *ctx, arg_EIEIO *a)
return true;
}
+
+static bool trans_ATTN(DisasContext *ctx, arg_ATTN *a)
+{
+#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
+ gen_helper_attn(tcg_env);
+ return true;
+#else
+ return false;
+#endif
+}