Browse Source

FPC version change and -Oa -> -O1

michael 27 years ago
parent
commit
ffa48ed96e
3 changed files with 6 additions and 6 deletions
  1. 1 1
      docs/fpc.sty
  2. 1 1
      docs/fpcman.sty
  3. 4 4
      docs/prog.tex

+ 1 - 1
docs/fpc.sty

@@ -189,5 +189,5 @@
 %
 %
 % Some versions 
 % Some versions 
 %
 %
-\newcommand{\fpcversion}{0.99.7}
+\newcommand{\fpcversion}{0.99.8}
 % end of fpc.sty
 % end of fpc.sty

+ 1 - 1
docs/fpcman.sty

@@ -155,5 +155,5 @@
 \newcommand{\fpc}{Free Pascal\ }
 \newcommand{\fpc}{Free Pascal\ }
 \newcommand{\gnu}{\textsc{gnu}\ }
 \newcommand{\gnu}{\textsc{gnu}\ }
 %
 %
-\newcommand{\fpcversion}{0.99.1}
+\newcommand{\fpcversion}{0.99.8}
 % end of fpcman.sty
 % end of fpcman.sty

+ 4 - 4
docs/prog.tex

@@ -34,8 +34,8 @@
 \begin{document}
 \begin{document}
 \title{Free Pascal \\ Programmers' manual}
 \title{Free Pascal \\ Programmers' manual}
 \docdescription{Programmers' manual for \fpc, version \fpcversion}
 \docdescription{Programmers' manual for \fpc, version \fpcversion}
-\docversion{1.4}
-\date{July 1998}
+\docversion{1.5}
+\date{September 1998}
 \author{Micha\"el Van Canneyt}
 \author{Micha\"el Van Canneyt}
 \maketitle
 \maketitle
 \tableofcontents
 \tableofcontents
@@ -3006,7 +3006,7 @@ implemented until version 0.99.6 of \fpc.
 
 
 \subsection{ Case optimization }
 \subsection{ Case optimization }
 
 
-When using the \var{-Oa} switch, case statements in certain cases will
+When using the \var{-O1} switch, case statements in certain cases will
 be decoded using a jump table, which in certain cases will make the
 be decoded using a jump table, which in certain cases will make the
 case statement execute faster.
 case statement execute faster.
 
 
@@ -3057,7 +3057,7 @@ made between using shorter instructions (for size) such as \var{enter \$4},
 or longer instructions \var{subl \$4,\%esp} for speed. When smaller size is
 or longer instructions \var{subl \$4,\%esp} for speed. When smaller size is
 requested, things aren't aligned on 4-byte boundaries.  When speed is
 requested, things aren't aligned on 4-byte boundaries.  When speed is
 requested, things are aligned on 4-byte boundaries as much as possible.
 requested, things are aligned on 4-byte boundaries as much as possible.
-\item Simple optimization (\var{-Oa}) makes sure the peephole optimizer is
+\item Simple optimization (\var{-O1}) makes sure the peephole optimizer is
 used, as well as the reloading optimizer.
 used, as well as the reloading optimizer.
 \item Uncertain optimizations (\var{-Ou}): With this switch, the reloading
 \item Uncertain optimizations (\var{-Ou}): With this switch, the reloading
 optimizer can be forced into making uncertain
 optimizer can be forced into making uncertain