Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
94faa2d2
...
94faa2d233d4f952794da3d198470c12a12bbb83
authored
2002-11-13 13:33:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Replaced BNZ with BZ.
1 parent
14a79fa3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
libsieve/README
libsieve/README
View file @
94faa2d
...
...
@@ -38,12 +38,12 @@ Pops the top of stack value into the numeric register.
2.3. Unconditional branch
Name: instr_branch
Arguments: [pc ] (number)
New value for pc
.
Arguments: [pc ] (number)
Offset of the new cell
.
2.4. Branch if
not
zero
2.4. Branch if zero
Name: instr_br
n
z
Arguments: [pc ] (number)
New value for pc
.
Name: instr_brz
Arguments: [pc ] (number)
Offset of the new cell
.
2.5. Logical NOT
...
...
@@ -89,7 +89,7 @@ is translated into the following program
.
.
.
br
n
z L_ELSE
brz L_ELSE
# Evaluate list1
.
.
...
...
@@ -112,7 +112,7 @@ is translated into the following program
.
.
.
br
n
z L_ELSIF
brz L_ELSIF
# Evaluate list1
.
.
...
...
@@ -123,7 +123,7 @@ L_ELSIF:
.
.
.
br
n
z L_ELSE
brz L_ELSE
# Evaluate list 2
.
.
...
...
Please
register
or
sign in
to post a comment