aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CommandLine.html
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-05-20 21:01:22 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-05-20 21:01:22 +0000
commit82c89b9f3a9b88bb63ce13b09b4f27fbb72f66fc (patch)
tree3581663b73bf4260e00041af8eaf725e9f933959 /docs/CommandLine.html
parent1a1046b7bc7d0b8d9ed88e3565a8905e194a47ff (diff)
downloadexternal_llvm-82c89b9f3a9b88bb63ce13b09b4f27fbb72f66fc.zip
external_llvm-82c89b9f3a9b88bb63ce13b09b4f27fbb72f66fc.tar.gz
external_llvm-82c89b9f3a9b88bb63ce13b09b4f27fbb72f66fc.tar.bz2
Hopefully, the final fix for `[Pp]ropogate'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandLine.html')
-rw-r--r--docs/CommandLine.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index e9546cb..fc66091 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -607,7 +607,7 @@ Then define your "<tt><a href="#cl::list">cl::list</a></tt>" variable:<p>
<a href="#cl::list">cl::list</a>&lt;Opts&gt; OptimizationList(<a href="#cl::desc">cl::desc</a>("<i>Available Optimizations:</i>"),
<a href="#cl::values">cl::values</a>(
clEnumVal(dce , "<i>Dead Code Elimination</i>"),
- clEnumVal(constprop , "<i>Constant Propogation</i>"),
+ clEnumVal(constprop , "<i>Constant Propagation</i>"),
clEnumValN(inlining, "<i>inline</i>", "<i>Procedure Integration</i>"),
clEnumVal(strip , "<i>Strip Symbols</i>"),
0));