changeset 11498:94ec1122be13

Change architecture interface.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 02 Sep 2013 14:08:49 +0200
parents f778836e07c6
children fc3a6fb4cf3d
files graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/Architecture.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/Architecture.java	Sun Sep 01 21:57:07 2013 +0200
+++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/Architecture.java	Mon Sep 02 14:08:49 2013 +0200
@@ -192,7 +192,7 @@
      *            null if no arithmetic needs to be performed on the vector
      * @return a supported vector size, but at most {@code maxLength}
      */
-    public int getSupportedVectorLength(Kind kind, int maxLength, ArithmeticOperation arithmetic) {
+    public int getSupportedVectorLength(Kind kind, int maxLength, Class<? extends ArithmeticOperation> arithmetic) {
         return 1;
     }