From e8ac3b5bd973054c6fd74db017bb448721e2c3e2 Mon Sep 17 00:00:00 2001 From: Caolan McNamara Date: Fri, 10 Jul 2015 16:36:41 +0100 Subject: ppc64: using a fp register also consumes a gp register slot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Idf6f40081f4598c0fa9d1e10bdc208eae49e4cd1 Reviewed-on: https://gerrit.libreoffice.org/16936 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- testtools/com/sun/star/comp/bridge/TestComponent.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'testtools/com') diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java index a6966eb15ec2..f8b50f23e222 100644 --- a/testtools/com/sun/star/comp/bridge/TestComponent.java +++ b/testtools/com/sun/star/comp/bridge/TestComponent.java @@ -498,6 +498,10 @@ public class TestComponent { return i2; } + public int testPPC64Alignment( double d1, double d2, double d3, int i1 ) throws com.sun.star.uno.RuntimeException { + return i1; + } + public double testTenDoubles( double d1, double d2, double d3, double d4, double d5, double d6, double d7, double d8, double d9, double d10 ) { return d1 + d2 + d3 + d4 + d5 + d6 + d7 + d8 + d9 + d10; } -- cgit