diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-06-17 16:34:48 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-06-17 16:34:48 +0000 |
commit | dcaa53791c3e0aaa059018b855a3eb22e9f3a87f (patch) | |
tree | 7bceb02806c3d37afd4a789db96ba525d734948d /llvm/lib/CodeGen/SelectionDAG | |
parent | 8c49a57266d85b24244620a1ba31c314659a9f2f (diff) | |
download | bcm5719-llvm-dcaa53791c3e0aaa059018b855a3eb22e9f3a87f.tar.gz bcm5719-llvm-dcaa53791c3e0aaa059018b855a3eb22e9f3a87f.zip |
fix typos in comments; NFC
llvm-svn: 239916
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index fb8322efb2d..3259ff78696 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -83,11 +83,11 @@ EnableFMFInDAG("enable-fmf-dag", cl::init(false), cl::Hidden, cl::desc("Enable fast-math-flags for DAG nodes")); // Limit the width of DAG chains. This is important in general to prevent -// prevent DAG-based analysis from blowing up. For example, alias analysis and +// DAG-based analysis from blowing up. For example, alias analysis and // load clustering may not complete in reasonable time. It is difficult to // recognize and avoid this situation within each individual analysis, and // future analyses are likely to have the same behavior. Limiting DAG width is -// the safe approach, and will be especially important with global DAGs. +// the safe approach and will be especially important with global DAGs. // // MaxParallelChains default is arbitrarily high to avoid affecting // optimization, but could be lowered to improve compile time. Any ld-ld-st-st |