summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2007-08-26 09:03:56 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2007-08-26 09:03:56 +0000
commit2b89ae94ffb6dc56fa780acced8ab7ad0afbb3b5 (patch)
tree5e47d0b27d94a85eefa3a5be27b7e45fa0941ff3 /backend
parenteb5d2ceee173d65bb166f6ffbe8e7da965f43a4b (diff)
Ajout de common/Complements.v
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@405 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'backend')
-rw-r--r--backend/PPC.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/backend/PPC.v b/backend/PPC.v
index 66d96c2..5cd5e9f 100644
--- a/backend/PPC.v
+++ b/backend/PPC.v
@@ -793,6 +793,8 @@ Inductive step: state -> trace -> state -> Prop :=
End RELSEM.
+(** Execution of whole programs. *)
+
Inductive initial_state (p: program): state -> Prop :=
| initial_state_intro:
let ge := Genv.globalenv p in
@@ -812,3 +814,4 @@ Inductive final_state: state -> int -> Prop :=
Definition exec_program (p: program) (beh: program_behavior) : Prop :=
program_behaves step (initial_state p) final_state (Genv.globalenv p) beh.
+