diff options
author | Craig Topper <craig.topper@gmail.com> | 2019-12-30 18:01:59 -0800 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2019-12-30 19:36:04 -0800 |
commit | 831898ff8acd4f5d8c5a644e6e566cefa23e2d6c (patch) | |
tree | f71b12481ce2255101240d7bc6b8f15bae9146a7 | |
parent | 991f7abdfc55ed968ee5593fb3a2d4843498da41 (diff) | |
download | bcm5719-llvm-831898ff8acd4f5d8c5a644e6e566cefa23e2d6c.tar.gz bcm5719-llvm-831898ff8acd4f5d8c5a644e6e566cefa23e2d6c.zip |
[SelectionDAG] Fix copy/paste mistake in comment. NFC
I think this was copied from scalarizeVectorLoad where that is
what happens.
-rw-r--r-- | llvm/include/llvm/CodeGen/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/TargetLowering.h b/llvm/include/llvm/CodeGen/TargetLowering.h index b03a25ed9ee..1f13d8d6b75 100644 --- a/llvm/include/llvm/CodeGen/TargetLowering.h +++ b/llvm/include/llvm/CodeGen/TargetLowering.h @@ -4141,7 +4141,7 @@ public: // Turn a store of a vector type into stores of the individual elements. /// \param ST Store with a vector value type - /// \returns MERGE_VALUs of the individual store chains. + /// \returns TokenFactor of the individual store chains. SDValue scalarizeVectorStore(StoreSDNode *ST, SelectionDAG &DAG) const; /// Expands an unaligned load to 2 half-size loads for an integer, and |