aboutsummaryrefslogtreecommitdiff
path: root/target-ppc/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r--target-ppc/op.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c
index 068ccb53b2..1e0584209e 100644
--- a/target-ppc/op.c
+++ b/target-ppc/op.c
@@ -1444,6 +1444,20 @@ void OPPROTO op_rotli32_T0 (void)
RETURN();
}
+#if defined(TARGET_PPC64)
+void OPPROTO op_rotl64_T0_T1 (void)
+{
+ T0 = rotl64(T0, T1 & 0x3F);
+ RETURN();
+}
+
+void OPPROTO op_rotli64_T0 (void)
+{
+ T0 = rotl64(T0, PARAM1);
+ RETURN();
+}
+#endif
+
/*** Integer shift ***/
/* shift left word */
void OPPROTO op_slw (void)