Avoid use of 'you'

This commit is contained in:
ceriel
1991-11-22 13:18:57 +00:00
parent fad1c30409
commit 2b6f5b9b8d
8 changed files with 26 additions and 28 deletions

View File

@@ -227,8 +227,8 @@ Use Definition analysis (UD) may introduce opportunities for LV.
Strength Reduction (SR) may create opportunities for UD.
.RE
.IP ""
The global optimizer is a combiner, so, when using it, offer it all the source
files of your program. This is not strictly necessary, but it makes the
The global optimizer is a combiner, so it should be offered all the source
files of the program. This is not strictly necessary, but it makes the
global optimizer more effective.
The current default optimization phases are:
.RS
@@ -278,7 +278,7 @@ as an option string to the Pascal compiler and supersedes corresponding
options given in the source file.
See the ACK reference manual [4] for a list of options.
.IP "\-+xxx, \-\-xxx"
When you want to interpret your program, you may select some
When interpreting programs, these flags are used to select some
options during interpretation, like test, profile, flow, extra and count.
A short description of these flags follows:
.RS
@@ -292,9 +292,9 @@ count the number of times a source line is executed.
count the memory cycles executed per source line.
.RE
.IP "" 5
Test is on by default, the others are off. Normally, you give these
flag options each time you run the interpreter.
The EM assembler/linker gives you the opportunity to change
Test is on by default, the others are off. Normally, these
flag options are given each time the interpreter is run.
The EM assembler/linker offers the opportunity to change
the defaults per program.
The changed options are recorded in the "e.out" header.
These flags \-\- and \-+ are passed to the assembler for this purpose.

View File

@@ -11,7 +11,7 @@ Em_ass assembles and links EM modules.
Arguments may be flags, EM modules or libraries.
Flags recognized are:
.IP "-ss, -sm, -sl, -sx"
Indicate that your program is small, medium, large, or extra large.
Indicate that the program is small, medium, large, or extra large.
Large is the default.
.IP -p
List all procedure names together with base-address (decimal and octal),
@@ -64,7 +64,7 @@ produced code the only messages to expect are "Out of memory"
or of the
form: Overflow in XXXX. The latter can usually be cured by giving
a -sx flag,
the former means your program is too big, dimishing
the former means the program is too big, dimishing
the size of very large procedures can sometimes help.
The most likely errors, however, are unresolved references,
probably caused by the omission of a library argument.

View File

@@ -139,7 +139,7 @@ implemented.
All diagnostics are written to the message file.
Diagnostics come in three flavors:
.IP \-
(messages): These inform you about NOP instructions, give more information
(messages): These mention NOP instructions, give more information
about incoming signals and display the exit status of the program.
.IP \-
(warnings): These are generated as a result of the checking.

View File

@@ -120,9 +120,9 @@ For each member of a library that is linked, give a message on standard
error telling why
.I led
chose to link it (which unresolved reference it resolves).
This option is useful if you have 'multiply defined' problems.
This option is useful in resolving 'multiply defined' problems.
.SH FILES
~em/lib/em_led
~em/lib.bin/em_led
a.out output file
.SH "SEE ALSO"
ack(1)

View File

@@ -15,16 +15,14 @@ EM programs in compact form.
These files are only machine readable.
A description of this compact form can be found in [1].
To inspect the code produced by compilers or to patch them for one reason
or another, you need human readable assembly code.
Em_decode will do the job for you.
or another, human readable assembly code is needed.
Em_decode produces human readable assembly code from the compact form.
.PP
Em_decode accepts the normal compact form in both optimized and
unoptimized form
unoptimized form.
.PP
Sometimes you have to make some special routines directly
in EM, for instance the routines implementing the system calls.
At these times you may use em_encode to produce compact routines
out of these human readable assembly modules.
Em_encode produces the compact form
out of these human readable assembly code.
.PP
The first argument is the input file.
The second argument is the output file.
@@ -35,7 +33,7 @@ A.S.Tanenbaum, Ed Keizer, Hans van Staveren & J.W.Stevenson
"Description of a machine architecture for use of
block structured languages" Informatica rapport IR-81.
.IP [2]
ack(I)
ack(1)
.SH DIAGNOSTICS
Error messages are intended to be self-explanatory.
.SH AUTHOR