aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Frontend.ml
diff options
context:
space:
mode:
authorFrédéric Besson <frederic.besson@inria.fr>2018-06-20 17:31:59 +0200
committerXavier Leroy <xavierleroy@users.noreply.github.com>2018-06-20 17:31:59 +0200
commita5d9207885f55542f0b4e2004e2545e0bd487734 (patch)
tree35dac8ae41f24bc997888971a2d61e77d4bb8ef3 /driver/Frontend.ml
parenta55025d1ab6f7b3525ccf42c874086d3a3da21c9 (diff)
downloadcompcert-kvx-a5d9207885f55542f0b4e2004e2545e0bd487734.tar.gz
compcert-kvx-a5d9207885f55542f0b4e2004e2545e0bd487734.zip
Typo in -iquote preprocessing option (#239)
The `-iquote` option was passed to the GNU preprocessor as `-iquore`
Diffstat (limited to 'driver/Frontend.ml')
-rw-r--r--driver/Frontend.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/Frontend.ml b/driver/Frontend.ml
index 9b7d5328..e5b51c1f 100644
--- a/driver/Frontend.ml
+++ b/driver/Frontend.ml
@@ -124,7 +124,7 @@ let gnu_prepro_actions = [
Exact "-imacros", String (gnu_prepro_opt_key "-imacros");
Exact "-idirafter", String (gnu_prepro_opt_key "-idirafter");
Exact "-isystem", String (gnu_prepro_opt_key "-isystem");
- Exact "-iquote", String (gnu_prepro_opt_key "-iquore");
+ Exact "-iquote", String (gnu_prepro_opt_key "-iquote");
Exact "-P", Self gnu_prepro_opt;
Exact "-C", Self gnu_prepro_opt;
Exact "-CC", Self gnu_prepro_opt;]