Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pub
frama-c
Commits
1d7a1e88
Commit
1d7a1e88
authored
Jun 19, 2020
by
Basile Desloges
Browse files
[eacsl] Add support of bitwise operations in E-ACSL implementation manual
parent
b3d5eb0d
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/e-acsl/doc/refman/changes_modern.tex
View file @
1d7a1e88
...
...
@@ -126,6 +126,12 @@ in \lstinline|\\at|}
\subsection*
{
Version
\eacslpluginversion
}
\begin{itemize}
\item
\changeinsection
{
expressions
}{
support of bitwise operations
}
\end{itemize}
\subsection*
{
Version Scandium-21
}
\begin{itemize}
\item
\changeinsection
{
reals
}{
support of rational numbers and operations
}
\item
\changeinsection
{
fn-behavior
}{
remove abrupt clauses from the list of
...
...
src/plugins/e-acsl/doc/refman/intro_modern.tex
View file @
1d7a1e88
...
...
@@ -48,7 +48,6 @@ currently implemented into the \framac's \eacsl plug-in.
\hline
terms
&
\lstinline
|
\\
true| and
\lstinline
|
\\
false|
\\
&
bitwise operators
\\
&
let binding
\\
&
t-sets
\\
\hline
...
...
src/plugins/e-acsl/doc/refman/term.tex
View file @
1d7a1e88
...
...
@@ -4,11 +4,11 @@
| real ; real constants
| string ; string constants
| character ; character constants
\
bin-op ::= "+" | "-" | "*" | [ "/" ] | [ "
%" ] |
{
"<<"
}
|
{
">>"
}
;
\
bin-op ::= "+" | "-" | "*" | [ "/" ] | [ "
%" ] | "<<" | ">>";
| "==" | "!=" | "<=" | ">=" | ">" | "<" ;
| [ "
&&
" ] | [ "||" ] | [ "
^^
" ] ; boolean operations
|
{
"
&
"
}
|
{
"|"
}
|
{
"-->"
}
|
{
"<-->"
}
| "
^
" ; bitwise operations
| "
&
" | "|" | "-->" | "<-->" | "
^
" ; bitwise operations
\
unary-op ::= "+" | "-" ; unary plus and minus
| "!" ; boolean negation
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment