changeset 15175:78f1a1a70628

Adapt CHANGELOG to reflect new signature of CallTarget#call.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Apr 2014 22:54:48 +0200
parents 20cd3e31b87d
children f24d578e63a9 66e3af78ea96 19a98af07b63
files CHANGELOG.md
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG.md	Wed Apr 16 22:52:43 2014 +0200
+++ b/CHANGELOG.md	Wed Apr 16 22:54:48 2014 +0200
@@ -7,11 +7,12 @@
 * Explicit types for inputs (InputType enum).
 * Added graal.version system property to Graal enabled VM builds.
 * Transitioned to JDK 8 as minimum JDK level for Graal.
-* Added support for stack introspection
+* Added support for stack introspection.
 * ...
 
 ### Truffle
-* Support for collecting stack traces and for accessing the current frame in slow paths
+* The method CallTarget#call takes now a variable number of Object arguments.
+* Support for collecting stack traces and for accessing the current frame in slow paths.
 * Renamed CallNode to DirectCallNode.
 * Renamed TruffleRuntime#createCallNode to TruffleRuntime#createDirectCallNode.
 * Added IndirectCallNode for calls with a changing CallTarget.