Skip to content

Commit

Permalink
Remove dead references to Type::None in the ir.spec
Browse files Browse the repository at this point in the history
Summary: It died a little while ago.

Reviewed By: @edwinsmith

Differential Revision: D1310674
  • Loading branch information
jdelong authored and JoelMarcey committed May 8, 2014
1 parent 85fb9bb commit 0d4bc9e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions hphp/doc/ir.specification
Original file line number Diff line number Diff line change
Expand Up @@ -649,8 +649,8 @@ JmpNInstanceOfBitmask
Fused jump instructions. These all operate exactly as their corresponding
query op, but also take a label to jump to when the condition is true.

D:None = JmpZero S0:{Bool|Int} L:Label
D:None = JmpNZero S0:{Bool|Int} L:Label
JmpZero S0:{Bool|Int} L:Label
JmpNZero S0:{Bool|Int} L:Label

Conditionally jump to L based on S0.

Expand Down Expand Up @@ -1692,11 +1692,11 @@ D:StkPtr InterpOne<T, bcOff, numPopped, numPushed> S0:StkPtr S1:FramePtr

Call the interpreter implementation function for one opcode. S0 and S1 are,
respectively, the VM stack and frame pointers before this instruction. T is
the type of the top stack element after the call, or None if it pushes
nothing. bcOff is the bytecode offset. numPopped is the number of stack cells
consumed by the instruction, and numPushed is the number of stack cells
produced by the instruction. This instruction returns the updated VM stack
pointer.
only present if the instruction pushes to the stack, in which case it is the
type of the top stack element after the call. `bcOff' is the bytecode
offset. `numPopped' is the number of stack cells consumed by the instruction,
and `numPushed' is the number of stack cells produced by the
instruction. This instruction returns the updated VM stack pointer.

D:StkPtr InterpOneCF<T, bcOff, numPopped, numPushed> S0:StkPtr S1:FramePtr

Expand Down

0 comments on commit 0d4bc9e

Please sign in to comment.