changeset 10881:f9215ee02538

PTX support for Linux
author Morris Meyer <morris.meyer@oracle.com>
date Thu, 25 Jul 2013 22:20:09 -0400
parents 7bd19a37f764
children 6a2d65cb5d7d
files graal/com.oracle.graal.compiler.ptx/src/com/oracle/graal/compiler/ptx/PTXBackend.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler.ptx/src/com/oracle/graal/compiler/ptx/PTXBackend.java	Thu Jul 25 22:17:37 2013 -0400
+++ b/graal/com.oracle.graal.compiler.ptx/src/com/oracle/graal/compiler/ptx/PTXBackend.java	Thu Jul 25 22:20:09 2013 -0400
@@ -123,8 +123,8 @@
                     // Not sure but specify 64-bit specifier??
                     param = ".param .s64 param" + i;
                     break;
-            } 
-            if (i != (paramCount -1 )) {
+            }
+            if (i != (paramCount - 1)) {
                 param += ",";
             }
             codeBuffer.emitString(param);