diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-04 16:35:26 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-04 16:35:26 +0000 |
commit | 79f8933f23f88e137014be175fc8c6539764b923 (patch) | |
tree | 381254390831fa17903acd1ed6a7e737ad8145ad /llvm/lib/CodeGen | |
parent | f1530f25129831aee3a89222fea13245008faf6b (diff) | |
download | bcm5719-llvm-79f8933f23f88e137014be175fc8c6539764b923.tar.gz bcm5719-llvm-79f8933f23f88e137014be175fc8c6539764b923.zip |
fix trivial typos in comments; NFC
llvm-svn: 307094
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 26164e6d907..e40788eea1d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -11049,7 +11049,7 @@ bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) { // x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store) // // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the - // indexed load/store and the expresion that needs to be re-written. + // indexed load/store and the expression that needs to be re-written. // // Therefore, we have: // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1 |