diff -r 1bfd09c6b3d8 -r be8c2dd09dff IRBuilder.st --- a/IRBuilder.st Tue Nov 15 21:28:05 2011 +0000 +++ b/IRBuilder.st Thu Mar 29 18:03:58 2012 +0000 @@ -106,13 +106,6 @@ "Modified: / 30-03-2009 / 11:15:46 / Jan Vrany " ! -tempNames - - ^ir tempNames - - "Modified: / 30-03-2009 / 11:15:46 / Jan Vrany " -! - testJumpAheadTarget: label jumpAheadStacks at: label ifPresent: [:stack | @@ -127,20 +120,6 @@ self addTemps: {tempKey} ! -addTempIfNotDefined: tempKey - - self addTempsIfNotDefined: (Array with: tempKey) - - "Created: / 23-03-2010 / 13:46:20 / Jan Vrany " -! - -addTempsIfNotDefined: temps - - ir addTempsIfNotDefined: temps - - "Created: / 23-03-2010 / 13:46:20 / Jan Vrany " -! - initialize ^self initializeFor: IRMethod new. @@ -478,13 +457,13 @@ !IRBuilder class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRBuilder.st,v 1.3 2009/10/08 11:57:58 fm Exp $' + ^ '$Id$' ! version_CVS - ^ '$Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRBuilder.st,v 1.3 2009/10/08 11:57:58 fm Exp $' + ^ '§Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRBuilder.st,v 1.3 2009/10/08 11:57:58 fm Exp §' ! version_SVN - ^ '$Id$' + ^ '$Id:: $' ! !