aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Driver.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2014-11-05 14:36:14 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2014-11-24 17:50:52 +0100
commit10941819e09e2f9090e7fe39301a0b9026a0eba0 (patch)
treec773e41153eb302cc5865de8f08e8503a7449057 /driver/Driver.ml
parentad8c37d0ebb36cb2e54baeacf5a4c7ff145b1a99 (diff)
downloadcompcert-10941819e09e2f9090e7fe39301a0b9026a0eba0.tar.gz
compcert-10941819e09e2f9090e7fe39301a0b9026a0eba0.zip
Verification of the Unusedglob pass (removal of unreferenced static global definitions). Assorted changes to ia32/Op.v. PowerPC and ARM need updating.
Diffstat (limited to 'driver/Driver.ml')
-rw-r--r--driver/Driver.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/Driver.ml b/driver/Driver.ml
index 76509f41..fec87420 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -150,7 +150,7 @@ let compile_c_ast sourcename csyntax ofile =
let asm =
match Compiler.transf_c_program csyntax with
| Errors.OK asm ->
- Asmexpand.expand_program (Unusedglob.transf_program asm)
+ Asmexpand.expand_program asm
| Errors.Error msg ->
print_error stderr msg;
exit 2 in