Changes between Version 1 and Version 2 of ParrotDeprecationsFor3.0

Show
Ignore:
Timestamp:
11/17/10 08:25:21 (11 years ago)
Author:
plobsing
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ParrotDeprecationsFor3.0

    v1 v2  
    11= Parrot Deprecations for 3.0 = 
     2 
     3== Exchange Op == 
     4 
     5=== Description === 
     6 
     7The exchange ops are deprecated. 
     8 
     9=== Rationale === 
     10 
     11They operate at too low a level to be useful as parrot ops. 
     12 
     13=== Replacement === 
     14 
     15You aren't using this. Seriously? 
     16 
     17{{{ 
     18.macro xchg_int(a, b) 
     19    $I0 = .a 
     20    .a = .b 
     21    .b = $I0 
     22.endm 
     23}}} 
    224 
    325== PIR string literals with charset and encoding are deprecated ==