about summary refs log tree commit diff
path: root/src/comp/driver
diff options
context:
space:
mode:
authorKelly Wilson <wilsonk@cpsc.ucalgary.ca>2011-05-16 12:14:24 -0600
committerGraydon Hoare <graydon@mozilla.com>2011-05-16 14:07:43 -0700
commitb91ef944c8719933b66b4b649cfe3d5e1a676402 (patch)
treeca2121dc9988a461170f01ddf7f0b579c950093e /src/comp/driver
parent196351aa44e920e032d54545ccb74443858f3055 (diff)
downloadrust-b91ef944c8719933b66b4b649cfe3d5e1a676402.tar.gz
rust-b91ef944c8719933b66b4b649cfe3d5e1a676402.zip
Replace --bitcode with the canonical --emit-llvm
Diffstat (limited to 'src/comp/driver')
-rw-r--r--src/comp/driver/rustc.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs
index 279f69ac616..d538e1711a6 100644
--- a/src/comp/driver/rustc.rs
+++ b/src/comp/driver/rustc.rs
@@ -155,7 +155,7 @@ options:
     -O                 optimize
     -S                 compile only; do not assemble or link
     -c                 compile and assemble, but do not link
-    --bitcode          produce an LLVM bitcode file
+    --emit-llvm        produce an LLVM bitcode file
     --save-temps       write intermediate files in addition to normal output
     --stats            gather and report various compilation statistics
     --time-passes      time the individual phases of the compiler
@@ -207,7 +207,7 @@ fn main(vec[str] args) {
 
     auto opts = vec(optflag("h"), optflag("help"),
                     optflag("v"), optflag("version"),
-                    optflag("glue"), optflag("bitcode"),
+                    optflag("glue"), optflag("emit-llvm"),
                     optflag("pretty"), optflag("ls"), optflag("parse-only"),
                     optflag("O"), optflag("shared"), optmulti("L"),
                     optflag("S"), optflag("c"), optopt("o"), optflag("g"),
@@ -250,7 +250,7 @@ fn main(vec[str] args) {
         output_type = link::output_type_assembly;
     } else if (opt_present(match, "c")) {
         output_type = link::output_type_object;
-    } else if (opt_present(match, "bitcode")) {
+    } else if (opt_present(match, "emit-llvm")) {
         output_type = link::output_type_bitcode;
     }