changeset 16434:2d01fb8f8acb

truffle compiler: put arguments in message of NPCNode
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 09 Jul 2014 10:42:34 +0200
parents 3691fe88967e
children b20d00b2ac2e 587ff693e666
files graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/nodes/asserts/NeverPartOfCompilationNode.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/nodes/asserts/NeverPartOfCompilationNode.java	Wed Jul 09 09:36:06 2014 +0200
+++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/nodes/asserts/NeverPartOfCompilationNode.java	Wed Jul 09 10:42:34 2014 +0200
@@ -42,7 +42,7 @@
     }
 
     public final String getMessage() {
-        return message;
+        return message + " " + arguments.toString();
     }
 
     @Override