NEW: Un-used parameter

Example:


function MyMethod(const AName : string; const AAge : integer) : string;
begin
  Result := 'Hello ' + AName;
end;

AAge isn't used, so as an optimisation, AAge could be removed (as there are stack pushing involved)