aboutsummaryrefslogtreecommitdiffstats
path: root/arm/Unusedglob1.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2014-12-17 15:28:01 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2014-12-17 15:28:01 +0100
commit4461db2bd92973b83bbd74c8f2eec16d702cffed (patch)
treeb02c8d646631662a5309238c13306a7d1f3e72db /arm/Unusedglob1.ml
parent20c70573181f81c99ea4e8797615dac8308a9b18 (diff)
parentc1daedb244d1f7586c12749642b0d78ae910e60a (diff)
downloadcompcert-4461db2bd92973b83bbd74c8f2eec16d702cffed.tar.gz
compcert-4461db2bd92973b83bbd74c8f2eec16d702cffed.zip
Merge branch 'master' into pure-makefiles
Diffstat (limited to 'arm/Unusedglob1.ml')
-rw-r--r--arm/Unusedglob1.ml32
1 files changed, 0 insertions, 32 deletions
diff --git a/arm/Unusedglob1.ml b/arm/Unusedglob1.ml
deleted file mode 100644
index 33a9bf8d..00000000
--- a/arm/Unusedglob1.ml
+++ /dev/null
@@ -1,32 +0,0 @@
-(* *********************************************************************)
-(* *)
-(* The Compcert verified compiler *)
-(* *)
-(* Xavier Leroy, INRIA Paris-Rocquencourt *)
-(* *)
-(* 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. *)
-(* *)
-(* *********************************************************************)
-
-(* Identifiers referenced from an ARM Asm instruction *)
-
-open Datatypes
-open AST
-open Asm
-
-let referenced_builtin ef =
- match ef with
- | EF_vload_global(chunk, id, ofs) -> [id]
- | EF_vstore_global(chunk, id, ofs) -> [id]
- | _ -> []
-
-let referenced_instr = function
- | Pbsymb(s, _) -> [s]
- | Pblsymb(s, _) -> [s]
- | Ploadsymbol(_, s, _) -> [s]
- | Pbuiltin(ef, _, _) -> referenced_builtin ef
- | _ -> []
-
-let code_of_function f = f.fn_code