# HG changeset patch # User Morris Meyer # Date 1374805209 14400 # Node ID f9215ee02538ce847402bed10ca79a5d7ba1f470 # Parent 7bd19a37f764632bfa065f8bf6cb2c55f08bd761 PTX support for Linux diff -r 7bd19a37f764 -r f9215ee02538 graal/com.oracle.graal.compiler.ptx/src/com/oracle/graal/compiler/ptx/PTXBackend.java --- 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);