-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathSelectLongproof.v
More file actions
23 lines (20 loc) · 1.22 KB
/
SelectLongproof.v
File metadata and controls
23 lines (20 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(* *********************************************************************)
(* *)
(* The Compcert verified compiler *)
(* *)
(* Xavier Leroy, INRIA Paris *)
(* *)
(* Copyright Institut National de Recherche en Informatique et en *)
(* Automatique. All rights reserved. This file is distributed *)
(* under the terms of the INRIA Non-Commercial License Agreement. *)
(* *)
(* *********************************************************************)
(** Instruction selection for 64-bit integer operations *)
From Coq Require Import String.
Require Import Coqlib Maps Integers Floats Errors.
Require Archi.
Require Import AST Values Memory Globalenvs Events.
Require Import Cminor Op CminorSel.
Require Import SelectOp SelectOpproof SplitLong SplitLongproof.
Require Import SelectLong.
(** This file is empty because we use the default implementation provided in [SplitLong]. *)