aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlix Trieu <atrieu@users.noreply.github.com>2019-04-09 17:00:39 +0200
committerXavier Leroy <xavierleroy@users.noreply.github.com>2019-04-15 14:54:54 +0200
commit04b822ca7eaf59a967b9b8f700104b78e77e5c98 (patch)
tree1c18405ae6ecdac743a2e8f2743e173de521662e
parentb2965fa033073c46fbc0e27900598a88580d2197 (diff)
downloadcompcert-04b822ca7eaf59a967b9b8f700104b78e77e5c98.tar.gz
compcert-04b822ca7eaf59a967b9b8f700104b78e77e5c98.zip
Typo in comment about Ijumptable in RTL.v
-rw-r--r--backend/RTL.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/RTL.v b/backend/RTL.v
index 16723d96..9599a24a 100644
--- a/backend/RTL.v
+++ b/backend/RTL.v
@@ -73,7 +73,7 @@ Inductive instruction: Type :=
it transitions to [ifnot]. *)
| Ijumptable: reg -> list node -> instruction
(** [Ijumptable arg tbl] transitions to the node that is the [n]-th
- element of the list [tbl], where [n] is the signed integer
+ element of the list [tbl], where [n] is the unsigned integer
value of register [arg]. *)
| Ireturn: option reg -> instruction.
(** [Ireturn] terminates the execution of the current function