>From 4e074f382e7477c4e54ef50203f47af9a291f151 Mon Sep 17 00:00:00 2001 From: Gwenael Casaccio Date: Thu, 6 Jun 2013 11:27:19 +0200 Subject: [PATCH] Remove useless optimizations --- ChangeLog | 4 ++++ kernel/ContextPart.st | 12 +++--------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8bc8710..a649b8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-06-06 Gwenael Casaccio + + * kernel/ContextPart.st: Remove useless optimizations. + 2013-05-18 Holger Hans Peter Freyther * gst-tool.c: Add --no-line-numbers to the gst-remote command. diff --git a/kernel/ContextPart.st b/kernel/ContextPart.st index e57cec3..775a03a 100644 --- a/kernel/ContextPart.st +++ b/kernel/ContextPart.st @@ -260,10 +260,8 @@ methods that can be used in inspection or debugging.'> ip [ "Answer the current instruction pointer into the receiver" - "This funny implementation thwarts the interpreter's optimizing effort" - - ^ip yourself + ^ip ] ip: newIP [ @@ -313,10 +311,8 @@ methods that can be used in inspection or debugging.'> sp [ "Answer the current stack pointer into the receiver" - "This funny implementation thwarts the interpreter's optimizing effort" - - ^sp yourself + ^sp ] validSize [ @@ -391,10 +387,8 @@ methods that can be used in inspection or debugging.'> receiver [ "Return the receiver (self) for the method being executed" - "This funny implementation thwarts the interpreter's optimizing effort" - - ^receiver yourself + ^receiver ] selector [ -- 1.8.1.2